Php/fuelphp/テンプレートレイアウト機能
提供: 初心者エンジニアの簡易メモ
- classes/controller/admin/sample.php
public $template = 'admin/template'; public function action_index() { $data = array(); $this->template->title = "Sample"; $this->template->content = View::forge('admin/sample/index', $data); }
- views/admin/template.php
<title><?php echo $title; ?></title> <div class="span12"> <?php echo $content; ?> </div>
注意
parent::before()を動かないと動作しない