Beispiel #1
0
 /**
  * Page controller after action.
  *
  * @see \Avenue\Controller::afterAction()
  */
 public function afterAction()
 {
     parent::afterAction();
     // fetching page view tempate by passing parameters
     $page = $this->view->layout($this->template, ['title' => $this->title, 'content' => $this->content]);
     // write to body
     $this->response->write($page);
 }
Beispiel #2
0
 public function afterAction()
 {
     parent::afterAction();
     return true;
 }
Beispiel #3
0
 public function afterAction()
 {
     parent::afterAction();
 }