コード例 #1
0
ファイル: html.php プロジェクト: klawd-prime/lean
 /**
  * Display the view
  */
 protected function displayView()
 {
     $view = $this->getView();
     $view->setData($this->data->toArray());
     $view->display();
 }
コード例 #2
0
ファイル: partial.php プロジェクト: klawd-prime/lean
 /**
  * @throws Exception
  */
 public function display()
 {
     $this->view->setData($this->data->toArray());
     $this->view->display();
 }