API17

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.  


{{subst:Description:JForm::findFieldsByFieldset}}
 


<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]]
{{subst:SeeAlso:JForm::findFieldsByFieldset}}
 


===User contributed notes===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JForm::findFieldsByFieldset
category=JForm::findFieldsByFieldset
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*

Latest revision as of 03:03, 25 March 2017

Joomla 11.1 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 Joomla 11.1

See also


User contributed notes

Code Examples