stubbetje/twig-zendform

Twig extension to integrate zendframework/zend-form into twig templates

v0.0.1 2016-09-17 09:06 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:36:13 UTC


README

Twig extension to integrate zendframework/zend-form into twig templates

Form open and close tags

Using the view helpers from zendframework/zend-view in your ZendFramework2 project:

echo $this->form()->openTag( $this->myform );

//...

echo $this->form()->closeTag();

Using this twig extension:

{{ form_opentag( myform ) }}
...
{{ form_closetag( myform ) }}