Table of Contents
- 23.1. Zend_Form
- 23.2. Zend_Form Quick Start
- 23.3. Creating Form Elements Using Zend_Form_Element
- 23.4. Creating Forms Using Zend_Form
- 23.5. Creating Custom Form Markup Using Zend_Form_Decorator
- 23.6. Standard Form Elements Shipped With Zend Framework
- 23.6.1. Zend_Form_Element_Button
- 23.6.2. Zend_Form_Element_Captcha
- 23.6.3. Zend_Form_Element_Checkbox
- 23.6.4. Zend_Form_Element_File
- 23.6.5. Zend_Form_Element_Hidden
- 23.6.6. Zend_Form_Element_Hash
- 23.6.7. Zend_Form_Element_Image
- 23.6.8. Zend_Form_Element_MultiCheckbox
- 23.6.9. Zend_Form_Element_Multiselect
- 23.6.10. Zend_Form_Element_Password
- 23.6.11. Zend_Form_Element_Radio
- 23.6.12. Zend_Form_Element_Reset
- 23.6.13. Zend_Form_Element_Select
- 23.6.14. Zend_Form_Element_Submit
- 23.6.15. Zend_Form_Element_Text
- 23.6.16. Zend_Form_Element_Textarea
- 23.7. Standard Form Decorators Shipped With Zend Framework
- 23.7.1. Zend_Form_Decorator_Callback
- 23.7.2. Zend_Form_Decorator_Captcha
- 23.7.3. Zend_Form_Decorator_Description
- 23.7.4. Zend_Form_Decorator_DtDdWrapper
- 23.7.5. Zend_Form_Decorator_Errors
- 23.7.6. Zend_Form_Decorator_Fieldset
- 23.7.7. Zend_Form_Decorator_File
- 23.7.8. Zend_Form_Decorator_Form
- 23.7.9. Zend_Form_Decorator_FormElements
- 23.7.10. Zend_Form_Decorator_FormErrors
- 23.7.11. Zend_Form_Decorator_HtmlTag
- 23.7.12. Zend_Form_Decorator_Image
- 23.7.13. Zend_Form_Decorator_Label
- 23.7.14. Zend_Form_Decorator_PrepareElements
- 23.7.15. Zend_Form_Decorator_ViewHelper
- 23.7.16. Zend_Form_Decorator_ViewScript
- 23.8. Internationalization of Zend_Form
- 23.9. Advanced Zend_Form Usage
Zend_Form simplifies form creation and handling in your web
application. It performs the following tasks:
Element input filtering and validation
Element ordering
Element and Form rendering, including escaping
Element and form grouping
Element and form-level configuration
Zend_Form makes use of several Zend Framework components to accomplish its
goals, including Zend_Config, Zend_Validate,
Zend_Filter, Zend_Loader_PluginLoader, and
optionally Zend_View.