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';
    }

}

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 ファイルで使用できるようにするにはどうすればよいですか?

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 に答える