我需要用一些 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';
}
}
配置.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 文件?