Zend_Form-Introduction.xml 1.1 KB

12345678910111213141516171819202122232425262728
  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 accomplish its
  18. goals, including <classname>Zend_Config</classname>, <classname>Zend_Validate</classname>,
  19. <classname>Zend_Filter</classname>, <classname>Zend_Loader_PluginLoader</classname>, and
  20. optionally <classname>Zend_View</classname>.
  21. </para>
  22. </sect1>
  23. <!--
  24. vim:se ts=4 sw=4 et:
  25. -->