Esempio n. 1
0
 /**
  * Do find action.
  *
  * @param   array    $conditions  Where conditions, you can use array or Compare object.
  * @param   array    $orders      Order sort, can ba string, array or object.
  * @param   integer  $start       Limit start number.
  * @param   integer  $limit       Limit rows.
  *
  * @return  mixed  Found rows data set.
  */
 protected function doFind(array $conditions, array $orders, $start, $limit)
 {
     return $this->db->find($this->table, $this->selectFields, $conditions, $orders, $start, $limit);
 }