예제 #1
0
 public function renderList()
 {
     $tpl = static::loadView('ui.list.tpl');
     $tpl->title = 'Welcome to Edge';
     $tpl->list = ["one", "two", "three"];
     return parent::render($tpl, ['title' => 'Edge MVC']);
 }
예제 #2
0
파일: Home.php 프로젝트: klimis/php-edge
 /**
  * Render the layout with the contents
  * of Application/Views/ui.index.tpl
  * @return mixed|string
  */
 public function index()
 {
     $tpl = static::loadView('ui.index.tpl');
     $tpl->title = 'Welcome to Edge';
     return parent::render($tpl, ['title' => 'Edge MVC']);
 }