API16

Difference between revisions of "JForm/addField"

From Joomla! Documentation

< API16:JForm
(New page: ===Description=== Method to add a field to a group. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki...)
 
Line 17: Line 17:
 
!Description
 
!Description
 
|-
 
|-
|  
+
| &$field
 
|  
 
|  
 
|  $field The field object to add.  
 
|  $field The field object to add.  

Revision as of 05:14, 30 March 2010

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 a field to a group.

[Edit Descripton]

Template:Description:JForm/addField

Syntax[edit]

addField(&$field, $group= '_default')
Parameter Name Default Value Description
&$field $field The field object to add.
$group '_default' $group The group to add the field to.

Returns[edit]

void

Defined in[edit]

libraries/joomla/form/form.php

Importing[edit]

jimport( 'joomla.form.form' );

Source Body[edit]

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

[Edit See Also] Template:SeeAlso:JForm/addField

Examples[edit]

<CodeExamplesForm />