Ejemplo n.º 1
0
 /**
  * 
  */
 public function jobListAction()
 {
     $mapperJob = new Job_Model_Mapper_JobVacancy();
     $filters = array('active' => 1);
     $this->view->rows = $mapperJob->listByFilters($filters);
 }
Ejemplo n.º 2
0
 /**
  * 
  */
 public function searchVacancyAction()
 {
     $this->_helper->layout()->disableLayout();
     $this->view->rows = $this->_mapper->listByFilters($this->_getAllParams());
     $this->view->listAjax = $this->_getParam('list-ajax');
 }