API16

API16:JForm/setField

From Joomla! Documentation

Revision as of 01:41, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Method to replace a field in a group.


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

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;
}


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

Examples

Code Examples