Browse Source

[GENERIC] Manual:

- added section for supported options

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@21243 44c647ce-9c0f-0410-b52a-842ac1e357ba
thomas 16 years ago
parent
commit
f2383f6502

+ 17 - 0
documentation/manual/en/module_specs/Zend_Validate-Identical.xml

@@ -8,6 +8,23 @@
         identical with an set haystack.
     </para>
 
+    <sect3 id="zend.validate.set.identical.options">
+        <title>Supported options for Zend_Validate_Identical</title>
+
+        <para>
+            The following options are supported for <classname>Zend_Validate_Identical</classname>:
+        </para>
+
+        <itemizedlist>
+            <listitem>
+                <para>
+                    <emphasis><property>token</property></emphasis>: Sets the token with which the
+                    input will be validated against.
+                </para>
+            </listitem>
+        </itemizedlist>
+    </sect3>
+
     <sect3 id="zend.validate.set.identical.basic">
         <title>Basic usage</title>
 

+ 31 - 0
documentation/manual/en/module_specs/Zend_Validate-InArray.xml

@@ -8,6 +8,37 @@
         contained within an array. It is also able to validate multidimensional arrays.
     </para>
 
+    <sect3 id="zend.validate.set.in_array.options">
+        <title>Supported options for Zend_Validate_InArray</title>
+
+        <para>
+            The following options are supported for <classname>Zend_Validate_InArray</classname>:
+        </para>
+
+        <itemizedlist>
+            <listitem>
+                <para>
+                    <emphasis><property>haystack</property></emphasis>: Sets the haystack for the
+                    validation.
+                </para>
+            </listitem>
+
+            <listitem>
+                <para>
+                    <emphasis><property>recursive</property></emphasis>: Defines if the validation
+                    should be done recursive. This option defaults to <constant>FALSE</constant>.
+                </para>
+            </listitem>
+
+            <listitem>
+                <para>
+                    <emphasis><property>strict</property></emphasis>: Defines if the validation
+                    should be done strict. This option defaults to <constant>FALSE</constant>.
+                </para>
+            </listitem>
+        </itemizedlist>
+    </sect3>
+
     <sect3 id="zend.validate.set.in_array.basic">
         <title>Simple array validation</title>
 

+ 24 - 0
documentation/manual/en/module_specs/Zend_Validate-Ip.xml

@@ -8,6 +8,30 @@
         address. It supports the IPv4 and also the IPv6 standard.
     </para>
 
+    <sect3 id="zend.validate.set.ip.options">
+        <title>Supported options for Zend_Validate_Ip</title>
+
+        <para>
+            The following options are supported for <classname>Zend_Validate_Ip</classname>:
+        </para>
+
+        <itemizedlist>
+            <listitem>
+                <para>
+                    <emphasis><property>allowipv4</property></emphasis>: Defines if the validator
+                    allows IPv4 adresses. This option defaults to <constant>TRUE</constant>.
+                </para>
+            </listitem>
+
+            <listitem>
+                <para>
+                    <emphasis><property>allowipv6</property></emphasis>: Defines if the validator
+                    allows IPv6 adresses. This option defaults to <constant>TRUE</constant>.
+                </para>
+            </listitem>
+        </itemizedlist>
+    </sect3>
+
     <sect3 id="zend.validate.set.ip.basic">
         <title>Basic usage</title>