Zend_Form-Introduction.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Reviewed: no -->
  3. <sect1 id="zend.form.introduction">
  4. <title>Zend_Form</title>
  5. <para>
  6. <classname>Zend_Form</classname> simplifies form creation and handling in your web
  7. application. It performs the following tasks:
  8. </para>
  9. <itemizedlist>
  10. <listitem><para>Element input filtering and validation</para></listitem>
  11. <listitem><para>Element ordering</para></listitem>
  12. <listitem><para>Element and Form rendering, including escaping</para></listitem>
  13. <listitem><para>Element and form grouping</para></listitem>
  14. <listitem><para>Element and form-level configuration</para></listitem>
  15. </itemizedlist>
  16. <para>
  17. <classname>Zend_Form</classname> makes use of several Zend Framework components to
  18. accomplish its goals, including <classname>Zend_Config</classname>,
  19. <classname>Zend_Validate</classname>, <classname>Zend_Filter</classname>,
  20. <classname>Zend_Loader_PluginLoader</classname>, and optionally
  21. <classname>Zend_View</classname>.
  22. </para>
  23. </sect1>
  24. <!--
  25. vim:se ts=4 sw=4 et:
  26. -->