| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <sect1 id="zend.validate.set" xmlns:xi="http://www.w3.org/2001/XInclude">
- <title>Standard Validation Classes</title>
- <para>
- Zend Framework comes with a standard set of validation classes, which are ready for you to
- use.
- </para>
- <xi:include href="Zend_Validate-Alnum.xml" />
- <xi:include href="Zend_Validate-Alpha.xml" />
- <xi:include href="Zend_Validate-Barcode.xml" />
- <xi:include href="Zend_Validate-Between.xml" />
- <xi:include href="Zend_Validate-Callback.xml" />
- <xi:include href="Zend_Validate-CreditCard.xml" />
- <sect2 id="zend.validate.set.ccnum">
- <title>Ccnum</title>
- <note>
- <para>
- The <classname>Ccnum</classname> validator has been deprecated in favor of the
- <classname>CreditCard</classname> validator. For security reasons you should use
- CreditCard instead of Ccnum.
- </para>
- </note>
- </sect2>
- <xi:include href="Zend_Validate-Date.xml" />
- <xi:include href="Zend_Validate-Db.xml" />
- <xi:include href="Zend_Validate-Digits.xml" />
- <xi:include href="Zend_Validate-EmailAddress.xml" />
- <xi:include href="Zend_Validate-Float.xml" />
- <xi:include href="Zend_Validate-GreaterThan.xml" />
- <xi:include href="Zend_Validate-Hex.xml" />
- <xi:include href="Zend_Validate-Hostname.xml" />
- <xi:include href="Zend_Validate-Iban.xml" />
- <xi:include href="Zend_Validate-Identical.xml" />
- <xi:include href="Zend_Validate-InArray.xml" />
- <xi:include href="Zend_Validate-Int.xml" />
- <xi:include href="Zend_Validate-Ip.xml" />
- <xi:include href="Zend_Validate-Isbn.xml" />
- <xi:include href="Zend_Validate-LessThan.xml" />
- <xi:include href="Zend_Validate-NotEmpty.xml" />
- <xi:include href="Zend_Validate-PostCode.xml" />
- <xi:include href="Zend_Validate-Regex.xml" />
- <xi:include href="Zend_Validate-Sitemap.xml" />
- <xi:include href="Zend_Validate-StringLength.xml" />
- </sect1>
- <!--
- vim:se ts=4 sw=4 et:
- -->
|