Exemple #1
0
 /**
  * Processes the condition array
  *
  * @param array     $where
  */
 protected function _process_where($where = array())
 {
     if (isset($where['id_page'])) {
         $where[$this->parent_table . '.id_page'] = $where['id_page'];
         unset($where['id_page']);
     }
     parent::_process_where($where);
 }