示例#1
0
 /**
  * (non-PHPdoc)
  * @see Core_Controller_Action_CrudDto::indexAction()
  */
 public function indexAction()
 {
     parent::indexAction();
     if ($this->_getParam('sqSistema')) {
         $this->view->sqSistema = $this->_getParam('sqSistema');
     }
 }
示例#2
0
 /**
  * Página inicial tela de pesquisa
  *
  * @see Core_Controller_Action_Abstract::indexAction()
  */
 public function indexAction()
 {
     $this->view->sistemas = $this->getService('Sistema')->getAll();
     $this->view->architetures = $this->getService()->findAllArchitetures();
     $this->view->status = $this->getService()->getStatus();
     parent::indexAction();
 }
 /**
  * (non-PHPdoc)
  * @see Core_Controller_Action_CrudDto::indexAction()
  */
 public function indexAction()
 {
     parent::indexAction();
     if ($this->_getParam('sqSistema')) {
         $this->view->sqSistema = $this->_getParam('sqSistema');
         if ($this->_getParam('sqMenu')) {
             $this->view->sqMenu = $this->_getParam('sqMenu');
             $this->view->arrMenu = $this->getService('Sistema')->findMenuBySystem($this->view->sqSistema);
         }
     }
 }