stubbetje/twig-zendform

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

Installs: 19

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/stubbetje/twig-zendform

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

This package is not auto-updated.

Last update: 2025-12-21 02:23:54 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 ) }}