API17:JForm::validateField
From Joomla! Documentation
(Difference between revisions)
(Bulk upload by Doxiki2) |
(Updated to r1448:247ba8d88526) |
||
| (One intermediate revision by one user not shown) | |||
| Line 8: | Line 8: | ||
<nowiki>[</nowiki>[[Description:JForm::validateField|Edit Descripton]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[Description:JForm::validateField|Edit Descripton]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | |||
| − | |||
| − | |||
<source lang="php"> | <source lang="php"> | ||
| − | protected | + | protected function validateField ( |
| + | $element | ||
| + | $group=null | ||
| + | $value=null | ||
| + | $input=null | ||
| + | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 42: | Line 44: | ||
|- | |- | ||
|} | |} | ||
| − | + | * '''Returns''' mixed Boolean true if field value is valid, on failure. | |
| − | mixed Boolean true if field value is valid, on failure. | + | * '''Defined''' on line 1565 of libraries/joomla/form/form.php |
| − | + | * '''Since''' {{JVer|11.1 }} | |
| − | libraries/joomla/form/form.php | + | |
| − | + | ||
===See also=== | ===See also=== | ||
| + | * {{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}} Subpackage [[Subpackage_Form/11.1|Form]] | ||
| + | * [[JForm::validateField|Other versions of JForm::validateField]] | ||
| + | {{SeeAlso:JForm::validateField}} | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[</nowiki>[[SeeAlso:JForm::validateField|Edit See Also]]<nowiki>]</nowiki> | <nowiki>[</nowiki>[[SeeAlso:JForm::validateField|Edit See Also]]<nowiki>]</nowiki> | ||
</span> | </span> | ||
| − | + | ===User contributed notes=== | |
| − | + | ||
| − | + | ||
| − | === | + | |
<CodeExamplesForm /> | <CodeExamplesForm /> | ||
<dpl> | <dpl> | ||
| Line 62: | Line 64: | ||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
| + | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
<noinclude>[[Category:JForm]][[Category:JForm::validateField]]</noinclude> | <noinclude>[[Category:JForm]][[Category:JForm::validateField]]</noinclude> | ||
Revision as of 21:00, 27 April 2011
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
JForm::validateField
Description
Method to validate a object based on field data.
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
See also
-
JForm::validateField source code on BitBucket
-
Class JForm
-
Subpackage Form
- Other versions of JForm::validateField
SeeAlso:JForm::validateField [Edit See Also]
User contributed notes
<CodeExamplesForm />
