我想使用nochso/html-compress-twig extension來壓縮所有的html,內聯css和js.但是這是我第一次在Twig上註冊一個新的擴展,並且我有點困惑應該在哪裏添加以下行在我的項目:在Symfony中註冊Twig擴展
$twig = new Twig_Environment($loader);
$twig->addExtension(new \nochso\HtmlCompressTwig\Extension());
我讀了枝條的文檔,但他們把同樣的例子,只是添加它並沒有幫助我很多的以下內容:
Twig does not care where you save your extension on the filesystem, as all extensions must be registered explicitly to be available in your templates.
You can register an extension by using the addExtension() method on your main Environment object:
我只希望能夠延長全球範圍內並能夠使用{% htmlcompress %}{% endhtmlcompress %}
任何樹枝模板
你最好遵循Symfony特定文檔在這裏:http://symfony.com/doc/current/templating/twig_extension.html –
不要忘記選擇正確的symfony版本,您也正在使用 –