jhse-labs / mezzio-twig-viewhelper
Bridges laminas view helpers to the twig environment when running a mezzio application
Requires
- php: ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0
- laminas/laminas-servicemanager: ^3.3
- mezzio/mezzio-laminasviewrenderer: ^2.4
- mezzio/mezzio-twigrenderer: ^2.9
README
Within mezzio applications, this module bridges the classic laminas view helpers to the twig environment enabled by mezzio-twigrenderer. You can use all laminas view helpers (e.g. for rendering laminas-form components) seamlessly from you twig templates.
This is inspired by kokspflanze/zfc-twig, the module that achieved this functionality for laminas-mvc.
Installation
Install the library using composer:
composer require jhse-labs/mezzio-twig-viewhelper
Enable the module in config.php:
<?php $aggregator = new ConfigAggregator([ \JhseLabs\MezzioTwigViewHelper\ConfigProvider::class, ...
The laminas view helper support is added to your Twig\Environment instance automatically via registering a delegator factory.
Usage
Within your Twig templates you can now call all your laminas view helpers:
<head> {{ headTitle('Login Page') }} </head> <body> {{ form(loginForm) }} </body>
Since version 1.1.0 it is possible to call laminas view helpers with named arguments:
{{ form(form=loginForm, method='POST') }}