예제 #1
0
 /**
  * Overrides postDispatch() from App_Controller
  * 
  * @access public
  * @return void
  */
 public function postDispatch()
 {
     parent::postDispatch();
     if (isset($this->title)) {
         $this->view->headTitle($this->title);
     } else {
         $this->view->headTitle('');
     }
 }
예제 #2
0
 /**
  * Overrides postDispatch() from App_Controller
  * 
  * @access public
  * @return void
  */
 public function postDispatch()
 {
     parent::postDispatch();
     $this->_helper->layout()->getView()->headTitle($this->title);
 }
예제 #3
0
파일: Base.php 프로젝트: gilad1987/picabo
 protected function postDispatch()
 {
     $this->_view->pageContent = 'עמוד ללא תוכן';
     parent::postDispatch();
 }