/**
  * 
  */
 public function searchBeneficiaryBlacklistAction()
 {
     $this->_helper->layout()->disableLayout();
     $this->view->rows = $this->_mapper->listByFilters($this->_getAllParams());
     $this->view->listAjax = $this->_getParam('list-ajax');
 }
Ejemplo n.º 2
0
 /**
  * @access public
  * @return array
  */
 public function blackListReport()
 {
     $mapper = new Fefop_Model_Mapper_BeneficiaryBlacklist();
     $rows = $mapper->listByFilters($this->_data);
     return array('rows' => $rows);
 }