JForm::findFieldsByFieldset: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
Method to get an array of <field> elements from the form XML document which are in a specified fieldset by name. | Method to get an array of <field> elements from the form XML document which are in a specified fieldset by name. | ||
<source lang="php"> | <source lang="php"> | ||
| Line 30: | Line 30: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Form|Form]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Form|Form]] | ||
* [[API17:JForm::findFieldsByFieldset|Other versions of JForm::findFieldsByFieldset]] | * [[API17:JForm::findFieldsByFieldset|Other versions of JForm::findFieldsByFieldset]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JForm::findFieldsByFieldset | category=JForm::findFieldsByFieldset | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 03:03, 25 March 2017
JForm::findFieldsByFieldset
Description
Method to get an array of <field> elements from the form XML document which are in a specified fieldset by name.
protected & function findFieldsByFieldset ($name)
| Parameter | Type | Default | Description |
|---|---|---|---|
| $name | string | The name of the fieldset. |
- Returns mixed Boolean false on error or array of objects.
- Defined on line 1246 of libraries/joomla/form/form.php
- Since

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