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

php, zend-form, zend-framework2

Solution

Decorators in ZF2 no longer exist. They were a mess in ZF1 even. However feel free to make your own decorators. You might also be interested in checking out Form Collections http://zf2.readthedocs.org/en/latest/modules/zend.form.collections.html

Problem

I'm currently learning ZF2, is it possible that the Form decorator pattern from ZF1 has been removed in ZF2? Am I right writing own view helper instead, decorating my forms?

Original source