YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* テンプレート [#af20c40a]
** テンプレート内でリクエストオブジェクトなどコアオブジェ...
<html>
<?php if (sfContext::getInstance()->getRequest()->getAtt...
こんにちは太郎さん
<?php } ?>
</html>
sfContextオブジェクトはリクエスト、レスポンス、ユーザーな...
** アクションメソッド内で任意のテンプレートファイルを指定...
if ($error) {
$this->setTemplate('error');
return sfView::ERROR; // => errorError.php
}
http://develop.ddo.jp/symfony/book/jp/1.0/controller.html
** テンプレートからテンプレートを呼び出す [#hfdd63e8]
*** 部分テンプレート [#e8e09f07]
以下のようにテンプレートに記述する。
<?php include_partial('mypartial1') ?> # frontend...
<?php include_partial('foobar/mypartial2') ?> # frontend...
部分テンプレート内で変数を参照するには、呼び出す際に以下...
<?php include_partial('mypartial', array('mytotal' => $t...
*** コンポーネント [#y27476cb]
TODO
終了行:
* テンプレート [#af20c40a]
** テンプレート内でリクエストオブジェクトなどコアオブジェ...
<html>
<?php if (sfContext::getInstance()->getRequest()->getAtt...
こんにちは太郎さん
<?php } ?>
</html>
sfContextオブジェクトはリクエスト、レスポンス、ユーザーな...
** アクションメソッド内で任意のテンプレートファイルを指定...
if ($error) {
$this->setTemplate('error');
return sfView::ERROR; // => errorError.php
}
http://develop.ddo.jp/symfony/book/jp/1.0/controller.html
** テンプレートからテンプレートを呼び出す [#hfdd63e8]
*** 部分テンプレート [#e8e09f07]
以下のようにテンプレートに記述する。
<?php include_partial('mypartial1') ?> # frontend...
<?php include_partial('foobar/mypartial2') ?> # frontend...
部分テンプレート内で変数を参照するには、呼び出す際に以下...
<?php include_partial('mypartial', array('mytotal' => $t...
*** コンポーネント [#y27476cb]
TODO
ページ名: