コード例 #1
0
ファイル: ClientController.php プロジェクト: fredcido/simuweb
 /**
  * 
  */
 public function searchClientAction()
 {
     $this->_helper->layout()->disableLayout();
     $this->view->rows = $this->_mapper->listByFilters($this->_getAllParams());
     $this->view->listAjax = $this->_getParam('list-ajax');
 }
コード例 #2
0
 /**
  * 
  */
 public function searchClientAction()
 {
     $this->_helper->layout()->disableLayout();
     $mapperClient = new Client_Model_Mapper_Client();
     $this->view->rows = $mapperClient->listByFilters($this->_getAllParams());
 }