API16

Difference between revisions of "JForm/addFields"

From Joomla! Documentation

< API16:JForm
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Method to add an array of fields to a group.
 
Method to add an array of fields to a group.
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JForm/addFields|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JForm/addFields}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 45: Line 43:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JForm/addFields|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JForm/addFields}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=addFields
 
  category=addFields
 
  category=JForm
 
  category=JForm
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:41, 24 March 2017

The "API16" 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.

Description[edit]

Method to add an array of fields to a group.


<! removed transcluded page call, red link never existed >

Syntax[edit]

addFields(&$fields, $group= '_default')
Parameter Name Default Value Description
&$fields $fields An array of field objects to add.
$group '_default' $group The group to add the fields to.

Returns[edit]

void

Defined in[edit]

libraries/joomla/form/form.php

Importing[edit]

jimport( 'joomla.form.form' );

Source Body[edit]

public function addFields(&$fields, $group = '_default')
{
        // Add the fields to the group.
        foreach ($fields as $field) {
                $this->_groups[$group][(string)$field->attributes()->name] = $field;
        }
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]