API16

API16:JForm/addFields

From Joomla! Documentation

Revision as of 02:52, 14 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

Description

Method to add an array of fields to a group.

[<! removed edit link to red link >]

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

Syntax

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

void

Defined in

libraries/joomla/form/form.php

Importing

jimport( 'joomla.form.form' );

Source Body

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 edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

<CodeExamplesForm />