JForm::loadField: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
Method to load, setup and return a object based on field data. | Method to load, setup and return a object based on field data. | ||
<source lang="php"> | <source lang="php"> | ||
| Line 44: | Line 44: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Form|Form]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Form|Form]] | ||
* [[API17:JForm::loadField|Other versions of JForm::loadField]] | * [[API17:JForm::loadField|Other versions of JForm::loadField]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JForm::loadField | category=JForm::loadField | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 03:04, 25 March 2017
JForm::loadField
Description
Method to load, setup and return a object based on field data.
protected function loadField (
$element
$group=null
$value=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. |
- Returns mixed The object for the field or boolean false on error.
- Defined on line 1423 of libraries/joomla/form/form.php
- Since

See also
JForm::loadField source code on BitBucket
Class JForm
Subpackage Form- Other versions of JForm::loadField
User contributed notes
Code Examples