$this->layout = “Sample”;としておきます。これで画面に、赤を基調としたレイアウトでページが表示されます。この他、レイアウトに表示するためのものとして以下のものを用意しています。(これらは、今回のレイアウトで用意しているもので、CakePHPの機能ではありません)
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※indexアクション public function index() { $this->modelClass = null; $this->layout = "Sample"; $this->set("header_for_layout","Sample Application"); $this->set("footer_for_layout", "copyright by SYODA-Tuyano. 2011."); $this->set("msg", "Welcome to my layout!"); } ※index.ctp <h1>Index Page</h1> <p>this is test View.</p> <p><?php echo $msg; ?></p>
<< 前へ |