Exemplo n.º 1
0
Arquivo: Db.php Projeto: kstep/pnut
 public function find($condition, $limit = 0, $offset = 0, $order = "", $group = "", $having = "")
 {
     if (!$condition instanceof Storage_Db_Result) {
         $condition = $this->_db->select($this->_view, "*", $condition, $limit, $offset, $order, $group, $having);
     }
     return parent::find($condition);
 }