Is there a way to set zend form details in the application config file (application.ini) in Zend Framework. I am looking for a way to move following details to config

  • A way to disable form decorators by default
  • set element Prefix Path
  • default decorator for different element type
  • validator path
  • plugin details
link|improve this question

74% accept rate
1  
yeah, those default decorators are a pain in the **** aren't they! I have ended up with a complete set of my own form_element_* so that I don't have to remove the default decorators every time. – vascowhite Nov 18 '11 at 2:08
Seems like storing some of that in your ini file is good, but I suspect you should extend Zend_Form and do most of this set up and use your extended form class for all of your forms. See this answer which shows an example of extending Zend_Form to easily change the default behavior. – drew010 Nov 18 '11 at 2:16
feedback

1 Answer

Well you can check this link from the Zend Manual itself. It talks about using ini files to configure a form: Using a Zend_Config Object

You can add various configurations to your ini file and apply them to the form itself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.