heimrichhannot / contao-twig-support-bundle
This bundle add twig template support to contao
Installs: 12 449
Dependents: 14
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 2
Open Issues: 3
Type:contao-bundle
Requires
- php: ^7.4 || ^8.0
- ext-json: *
- contao/core-bundle: ^4.13
- symfony/cache: ^4.4||^5.4
- symfony/config: ^4.4||^5.4
- symfony/event-dispatcher: ^4.4||^5.4
- symfony/event-dispatcher-contracts: ^1||^2||^3
- symfony/finder: ^4.4||^5.4
- symfony/http-foundation: ^4.4||^5.4
- symfony/http-kernel: ^4.4||^5.4
- symfony/stopwatch: ^4.4||^5.4
- twig/twig: ^1.26||^2.7||^3.0
- webmozart/path-util: ^2.3
Requires (Dev)
- contao/core-bundle: ^4.13
- contao/manager-plugin: ^2.0
- contao/test-case: ^4.9
- friendsofphp/php-cs-fixer: ^2.2
- heimrichhannot/contao-test-utilities-bundle: ^0.1.5
- php-coveralls/php-coveralls: ^2.0
- phpunit/phpunit: ^8.0 || ^9.0
- symfony/phpunit-bridge: ^4.4 || ^5.4
- dev-master
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.0
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.9
- 1.5.8
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.0
- 1.2.1
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.0
- 0.2.18
- 0.2.17
- 0.2.16
- 0.2.15
- 0.2.14
- 0.2.13
- 0.2.12
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-contao5
This package is auto-updated.
Last update: 2024-10-31 14:32:42 UTC
README
A bundle to enable extensive twig templates support in contao. Just activate the template loader and you can work with twig templates as they were .html5 templates. This means, you can select twig templates in the custom template select in the contao backend and you can override any template in your project template folder or in a bundle. As a developer, you can use this bundle to work with twig templates like with contao templates, e.g. use simple template names, template groups and rely on the contao template hierarchy.
Features
- enable twig support in contao
- use twig to write contao templates
- select twig templates in your module/element custom template selection or override default templates in twig
- support for all types of templates including widgets
- use this bundle as library to work with twig templates in your own bundles with extensive template loader
- uses caching for fast performance (is disabled in dev mode)
- minimal dependencies ;)
Usage
Setup
Install via contao manager or composer:
composer require heimrichhannot/contao-twig-support-bundle
Your first template
-
If you want to use this bundle to enable contao to support twig templates, you need to enable the template loader. You just need to add following configuration entries to your config.yml:
# config/config.yml (Contao 4.9) or app/Resources/config/config.yml (Contao 4.4) huh_twig_support: enable_template_loader: true
-
Now you can create every contao template as twig template. For example create a twig template
ce_text_custom.html.twig
and add it to your projekttemplates
folder (in contao 4.4:app/Resources/views
). Now you can select the template as custom Template in the text content element (maybe you need to clear the cache before). You can override every core template that is parsed byparseTemplate
andparseWidget
hook. You can also add templates from bundles (just place them insrc/Resources/views
).
Widgets
As already written, this bundle also allows overriding widget templates. Since twig templates are not rendered in the default widget/template scope as contao templates, you can't use $this
to get variables. Instead, twig support bundle passes the widget instance, so you can use the widget object to get the variable content, for example {{ widget.name }}
or {{ widget.class }}
.
Twig and contao cavets
User input is encoded by contao, so you need to add the raw filter to variables if you need to output html.
Use project templates folder for twig templates in contao 4.4
If you want to use the project templates folder also in contao 4.4, just add following lines to your config.yml:
# app/Ressouces/config/config.yml twig: paths: '%kernel.project_dir%/templates': ~
Skip templates
It may the be case, that other bundle comes with twig templates that are incompatible with core template but have the same name. Or you don't want to process some templates as twig templates. In this case you can add them to the skip templates configuration:
huh_twig_support: skip_templates: - image - ce_no_twig - mod_html5_only
There is also a SkipTemplateException
that could be thrown in the BeforeParseTwigTemplateEvent
to skip a template.
Developers
Events
Use twig in your bundle
This bundle is a great base if you want to use twig in your own bundles.
Template locator
Use the TwigTemplateLocator
service to load your templates, where you need them while keeping the contao template hierarchy (you can override a bundle template in your project template folder or in another bundle which is loaded after the bundle).
Get all Templates with prefix (like Controller::getTemplateGroup): TwigTemplateLocator::getTemplateGroup()
class CustomContainer { /** * @var HeimrichHannot\TwigSupportBundle\Filesystem\TwigTemplateLocator */ protected $templateLocator; public function onTemplateOptionsCallback() { return $this->templateLocator->getTemplateGroup('subscribe_button_'); } }
Get the twig path from an template name:
use HeimrichHannot\TwigSupportBundle\Filesystem\TwigTemplateLocator; use Twig\Environment; function showTemplateLocatorUsage(TwigTemplateLocator $templateLocator, Environment $twig) { $twigTemplatePath = $templateLocator->getTemplatePath('my_custom_template'); $buffer = $twig->render($twigTemplatePath, ['foo' => 'bar']); }
Template renderer
Use the TwigTemplateRenderer
service to render a template by template name. The renderer adds template comments in dev mode as contao does for html5 templates. There are additional config options to customize the renderer or render a specific twig template instead of using the template locator to get the correct path to an template name. If you need to add specific logic applied before or after rendering, we recommend to decorate the service.
use HeimrichHannot\TwigSupportBundle\Renderer\TwigTemplateRenderer; use HeimrichHannot\TwigSupportBundle\Renderer\TwigTemplateRendererConfiguration; class MyCustomController { /** @var TwigTemplateRenderer */ protected $twigTemplateRenderer; public function renderAction(string $templateName = 'mod_default', array $templateData = []): string { $buffer = $this->twigTemplateRenderer->render($templateName, $templateData); // Or pass some configuration: $configuration = (new TwigTemplateRendererConfiguration()) ->setShowTemplateComments(false) ->setTemplatePath('@AcmeBundle/module/mod_custom.html.twig') ->setThrowExceptionOnError(false); return $this->twigTemplateRenderer->render($templateName, $templateData, $configuration); } }
TwigFrontendTemplate
You can use the TwigFrontendTemplate
class to work with a twig template as it's a normal contao frontend template object. It inherits from the contao FrontendTemplate class and can be used to render twig template in contao context and use all hooks and template class functions.
use HeimrichHannot\TwigSupportBundle\Template\TwigFrontendTemplate; $template = new TwigFrontendTemplate('my_custom_template'); $template->setData(['foo' => 'bar']); return $template->getResponse();
Configuration reference
# Default configuration for extension with alias: "huh_twig_support" huh_twig_support: # Enable twig templates to be loaded by contao (enabled overriding core templates and select twig templates in the contao backend). enable_template_loader: false # Template names that should be skipped by the template loader. skip_templates: # Examples: - image - ce_no_twig - mod_html5_only # Template cache lifetime in seconds with a value 0 causing cache to be stored indefinitely (i.e. until the files are deleted). template_cache_lifetime: 0
Credits
- thanks to m-vo and his Twig Bundle which implementation was in inspiration and inital basis for this bundle.