getOne(array('where' => 'classid='.$id, 'asArray' => true)); } public function getRowishowbyId($id){ return $this->getOne(array('where' => 'ishow=1 and classid='.$id, 'asArray' => true)); } public function getclasslist($limit){ return $this->find(array('desc' => 'createtime', 'limit' => $limit, 'asArray' => true)); } public function getclasslistbyshow($limit){ return $this->find(array('where' => 'ishow=1', 'desc' => 'createtime', 'limit' => $limit, 'asArray' => true)); } public function getnamebyId($id){ return $this->getOne(array('select' => 'classname', 'where' => 'classid='.$id, 'asArray' => TRUE)); } public function getclassbySearch($search){ return $this->find(array('where' => 'ishow=1 and classname="'.$search.'"', 'asArray' => TRUE)); } }