When I use the zend CLI to create a form, the form is created and added to the forms folder.
zf create form MyForm
I have a custom class that I would like to create a custom command for it in the same way and would like to see the command zf create formfor guidance. I suspected it was in Zend_Framework / bin, where there are shell files, php, bat, but I could not find any code related to creating the form class, maybe I missed it?
Anyway, is it better to do the same? How is the Zend API, which allows me to create some of these commands myself? If not for my only option, it would be to see how something like was created zf create form.
source
share