API16:JForm/setField
From Joomla! Documentation
< API16:JForm(Difference between revisions)
(New page: ===Description===
Method to replace a field in a group.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</no...) |
|||
| Line 17: | Line 17: | ||
!Description | !Description | ||
|- | |- | ||
| − | | | + | | &$field |
| | | | ||
| $field The field object to replace. | | $field The field object to replace. | ||
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 replace a field in a group.
Syntax
setField(&$field, $group= '_default')
| Parameter Name | Default Value | Description |
|---|---|---|
| &$field | $field The field object to replace. | |
| $group | '_default' | $group The group to replace the field in. |
Returns
boolean True on success, false when field does not exist.
Defined in
libraries/joomla/form/form.php
Importing
jimport( 'joomla.form.form' );
Source Body
public function setField(&$field, $group = '_default') { $return = false; // Add the fields to the group if it exists. if (isset($this->_groups[$group][$field->attributes()->name])) { $this->_groups[$group][(string)$field->attributes()->name] = $field; $return = true; } return $return; }
[Edit See Also] SeeAlso:JForm/setField
Examples
<CodeExamplesForm />
