Zend_Validate-Set.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- EN-Revision: 22040 -->
  3. <!-- Reviewed: no -->
  4. <sect1 id="zend.validate.set" xmlns:xi="http://www.w3.org/2001/XInclude">
  5. <title>Standard Prüfklassen</title>
  6. <para>
  7. Zend Framework kommt mit einem Standardset von Prüfklassen, welche fertig zur Verwendung
  8. sind.
  9. </para>
  10. <xi:include href="Zend_Validate-Alnum.xml" />
  11. <xi:include href="Zend_Validate-Alpha.xml" />
  12. <xi:include href="Zend_Validate-Barcode.xml" />
  13. <xi:include href="Zend_Validate-Between.xml" />
  14. <xi:include href="Zend_Validate-Callback.xml" />
  15. <xi:include href="Zend_Validate-CreditCard.xml" />
  16. <sect2 id="zend.validate.set.ccnum">
  17. <title>Ccnum</title>
  18. <note>
  19. <para>
  20. Die <classname>Ccnum</classname> Prüfung sollte nicht mehr eingesetzt werden.
  21. Stattdessen sollte man die <classname>CreditCard</classname> Prüfung verwenden.
  22. Aus Gründen der Sicherheit sollte man CreditCard statt Ccnum verwenden.
  23. </para>
  24. </note>
  25. </sect2>
  26. <sect2 id="zend.validate.set.date">
  27. <title>Date</title>
  28. <para>
  29. Gibt nur dann <constant>TRUE</constant> zurück wenn <varname>$value</varname> ein
  30. gültiges Datum im Format 'YYYY-MM-DD' ist. Wenn die optionale
  31. <property>locale</property> Option gesetzt ist, dann wird das Datum entsprechend dem
  32. gesetzten Gebietsschemas geprüft. Und wenn die optionale <property>format</property>
  33. Option gesetzt wird, dann wird dieses Format für die Prüfung herangezogen. Für Details
  34. über die optionalen Parametern siehe <link
  35. linkend="zend.date.others.comparison.table">Zend_Date::isDate()</link>.
  36. </para>
  37. </sect2>
  38. <xi:include href="Zend_Validate-Db.xml" />
  39. <xi:include href="Zend_Validate-Digits.xml" />
  40. <xi:include href="Zend_Validate-EmailAddress.xml" />
  41. <xi:include href="Zend_Validate-Float.xml" />
  42. <xi:include href="Zend_Validate-GreaterThan.xml" />
  43. <xi:include href="Zend_Validate-Hex.xml" />
  44. <xi:include href="Zend_Validate-Hostname.xml" />
  45. <xi:include href="Zend_Validate-Iban.xml" />
  46. <xi:include href="Zend_Validate-Identical.xml" />
  47. <xi:include href="Zend_Validate-InArray.xml" />
  48. <xi:include href="Zend_Validate-Int.xml" />
  49. <xi:include href="Zend_Validate-Isbn.xml" />
  50. <xi:include href="Zend_Validate-Ip.xml" />
  51. <xi:include href="Zend_Validate-LessThan.xml" />
  52. <xi:include href="Zend_Validate-NotEmpty.xml" />
  53. <xi:include href="Zend_Validate-PostCode.xml" />
  54. <xi:include href="Zend_Validate-Regex.xml" />
  55. <xi:include href="Zend_Validate-Sitemap.xml" />
  56. <xi:include href="Zend_Validate-StringLength.xml" />
  57. </sect1>