Beispiel #1
0
 public function action_index()
 {
     //テーマのインスタンス化
     $this->theme = \Theme::forge();
     //テーマにテンプレートのセット
     $this->theme->set_template('admin/template.php');
     //テーマのテンプレートにタイトルをセット
     $this->theme->get_template()->set('title', 'ameken.com');
     //テーマのテンプレートにビューとページデータをセット
     $this->theme->get_template()->set('content', $this->theme->view('admin/index', Model_Admin::pagedata()));
     return $this->theme;
 }