コード例 #1
0
ファイル: MatchController.php プロジェクト: fredcido/simuweb
 /**
  * 
  */
 public function printAction()
 {
     $this->_helper->layout()->setLayout('print');
     $id = $this->_getParam('id');
     $vacancy = $this->_mapperVacancy->detailVacancy($id);
     $this->view->vacancy = $vacancy;
     $this->view->shortlist = $this->_mapper->listShortlist($id);
 }
コード例 #2
0
 /**
  * 
  */
 public function listClientAction()
 {
     $this->_helper->layout()->disableLayout();
     $mapperMatch = new Job_Model_Mapper_JobMatch();
     $this->view->rows = $mapperMatch->listManual($this->_getAllParams());
 }