Changing database data for displaying
Changing database data for displaying Posted by Alexander Shatalov PHP private function catchRow(&$row, $full) { $row['module'] = $this->name; $row['url_open'] = '?grid='.$this->name.AMP.'id='.$row['id']; $row['alt'] = html($row['title']); $this->Index->Edit->set($row, 'grid_'.$this->name, $row['id'], 'id')->parse()->admin(); if (isset($this->catch[$this->name]) && $this->catch[$this->name]) { if (is_array($this->catch[$this->name])) { $this->catch[$this->name][0]->{$this->catch[$this->name][1]}($row, $full); } else { $this->catch[$this->name]($row, $full); } } } |