Zend Framework 2 forms, have they eliminated the decorator pattern?

I am currently studying ZF2, is it possible that the form decorator template from ZF1 has been removed in ZF2?

Am I correctly writing my own view helper, decorating my forms?

+5
source share
1 answer

Decorators in ZF2 no longer exist. They were a mess in ZF1. However, feel free to create your own decorators. You may also be interested in checking the forms of the collection http://zf2.readthedocs.org/en/latest/modules/zend.form.collections.html

+3
source

All Articles