digital-marketing-framework / typo3-template-engine-twig
Anyrel - Twig Template Engine
Package info
github.com/digital-marketing-framework/typo3-template-engine-twig
Type:typo3-cms-extension
pkg:composer/digital-marketing-framework/typo3-template-engine-twig
4.0.1
2026-05-26 14:58 UTC
Requires
- php: ^8.2
- digital-marketing-framework/template-engine-twig: ^3.0
- digital-marketing-framework/typo3-core: ^4.0
- typo3/cms-core: ^12.4 || ^13.4 || ^14.3
Requires (Dev)
- mediatis/typo3-coding-standards: ^2.1 || ^3.1
This package is auto-updated.
Last update: 2026-05-26 18:16:04 UTC
README
EXT:dmf_template_engine_twig is overriding the default template engine from EXT:dmf_core
It will allow you to use Twig in the template fields
Manual
Data access
It is possible to output the data directly with the field name. Example:
Hello {{ firstname }} {{ lastname }},
Thank you for your message!
Furthermore, we have an array in which all fields have been stored. Here is an example of how to access the array:
{% for key,value in all_values %}
{{ key }}: {{ value }}
{% endfor %}