Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.ctpファイルでもあるレイアウトから.ctpファイルを呼び出すことは可能ですか?
トップバー、フッター、そしてもちろん変数$content_for_layoutが中央にあるデフォルトのレイアウトがあります。トップバーとフッターを他の2つの異なる.ctpファイルにディスパッチしたいので、レイアウトからそれらを呼び出したいと思います。
要素を使用できます。
<?php echo $this->element('topbar'); echo $content_for_layout; echo $this->element('footer'); ?>
要素を使用するか、CakePHP2.1ではブロックをチェックアウトできます。