4

我需要用一些 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 文件?

4

2 回答 2

8

你想设置一个全局变量,而不是一个函数。

只需使用getGlobals并返回您的变量:

class GlobalFooterExtension extends \Twig_Extension
{
    public function getGlobals()
    {
        return array(
            "GlobalFooter" => file_get_contents('http://mysite.co.uk/footer/footer.html.twig'),
        );
    }

    public function getName()
    {
        return 'GlobalFooter_extention';
    }
}

或者,如果您想延迟加载变量的值,请创建一个函数并将模板更改为:

{{ GlobalFooter() }}

除此之外,如果页脚文件在同一个站点上,最好使用{% include '...' %}标签。

于 2013-07-31T16:01:39.947 回答
1

将函数重命名getFiltersgetFunctions

于 2013-07-31T15:55:49.650 回答