$this->viewBuilder()->layout('sample');
$this->set('header', '* this is sample site *');
$this->set('footer', 'copyright 2015 libro.');
$msg = "これは、サンプルアクションです。";
$this->set('message', $msg);
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<?php namespace App\Controller; use App\Controller\AppController; class HeloController extends AppController { public function initialize() { parent::initialize(); $this->viewBuilder()->layout('sample'); $this->set('header', '* this is sample site *'); $this->set('footer', 'copyright 2015 libro.'); } public function index() { $msg = "これは、サンプルアクションです。"; $this->set('message', $msg); } }
<< 前へ | 次へ >> |