変数に HTML コードを入力し、それを base.html.twig ファイルで使用できるようにする必要があります。
これを達成するために、小枝拡張を作成しました。小枝エクステンションを使用するのはこれが初めてなので、これが正しい方法であるかどうかはわかりません。
これが私がこれまでに持っているものです:
延長コード:
class GlobalFooterExtension extends \Twig_Extension
{
public function getFilters()
{
return array(
new \Twig_Filter_Function('GlobalFooter', array($this, 'GlobalFooter')),
);
}
public function GlobalFooter()
{
$GlobalFooter = file_get_contents('http://mysite.co.uk/footer/footer.html.twig');
return $GlobalFooter;
}
public function getName()
{
return 'GlobalFooter_extention';
}
}
config.yml:
services:
imagine.twig.GlobalFooterExtension:
class: Imagine\GdmBundle\Twig\GlobalFooterExtension
tags:
- { name: twig.extension }
base.html.twig:
{{GlobalFooter}}
これにより、次のエラーが発生します。
Twig_Error_Runtime: Variable "GlobalFooter" does not exist in "ImagineGdmBundle:Default:product.html.twig" at line 2
本当に明白な何かが欠けていると確信しています。GlobalFooterExtension クラスの $GlobalFooter を base.hmtl.twig ファイルで使用できるようにするにはどうすればよいですか?