API17

Difference between revisions of "JForm::validateField"

From Joomla! Documentation

(Updated to r1448:247ba8d88526)
m (→‎See also: moving preparation)
(2 intermediate revisions by the same user not shown)
Line 49: Line 49:
 
===See also===
 
===See also===
 
* {{JVer|11.1}} '''JForm::validateField source code''' on [[jplatform:form/form.php#cl-1557|BitBucket]]
 
* {{JVer|11.1}} '''JForm::validateField source code''' on [[jplatform:form/form.php#cl-1557|BitBucket]]
* {{JVer|11.1}} Class [[JForm/11.1|JForm]]
+
* {{JVer|11.1}} Class [[API17:JForm|JForm]]
* {{JVer|11.1}} Subpackage [[Subpackage_Form/11.1|Form]]
+
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Form|Form]]
* [[JForm::validateField|Other versions of JForm::validateField]]
+
* [[API17:JForm::validateField|Other versions of JForm::validateField]]
 
{{SeeAlso:JForm::validateField}}
 
{{SeeAlso:JForm::validateField}}
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
Line 67: Line 67:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JForm]][[Category:JForm::validateField]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 20:44, 11 May 2013

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JForm::validateField[edit]

Description[edit]

Method to validate a object based on field data.

Template:Description:JForm::validateField [Edit Descripton]

protected function validateField (
        $element
        $group=null
        $value=null
        $input=null
)
Parameter Type Default Description
$element string The XML element object representation of the form field.
$group string null The optional dot-separated form group path on which to find the field.
$value mixed null The optional value to use as the default for the field.
$input object null An optional object with the entire data set to validate against the entire form.
  • Returns mixed Boolean true if field value is valid, on failure.
  • Defined on line 1565 of libraries/joomla/form/form.php
  • Since Joomla 11.1

See also[edit]

Template:SeeAlso:JForm::validateField [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />