Untitled
By: a guest | Jul 15th, 2010 | Syntax:
PHP | Size: 0.48 KB | Hits: 41 | Expires: Never
class list_action extends listform_actions {
function prepareDataRow($rec){
global $app;
$rec = $app->listform->decode($rec);
//* Alternating datarow colors
$this->DataRowColor = ($this->DataRowColor == '#FFFFFF') ? '#EEEEEE' : '#FFFFFF';
$rec['bgcolor'] = $this->DataRowColor;
$rec['dir'] = str_replace('/var/www/clients/'.$_SESSION['s']['user']['username'],'',$rec['dir']);
return $rec;
}
}