API16:JForm/addField
From Joomla! Documentation
< API16:JForm(Difference between revisions)
(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
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Method to add a field to a group.
Syntax
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
void
Defined in
libraries/joomla/form/form.php
Importing
jimport( 'joomla.form.form' );
Source Body
public function addField(&$field, $group = '_default') { // Add the field to the group. $this->_groups[$group][(string)$field->attributes()->name] = &$field; }
[Edit See Also] SeeAlso:JForm/addField
Examples
<CodeExamplesForm />
