API16

API16:JForm/getValue

From Joomla! Documentation

Revision as of 22:51, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Method to get the value of a field. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowi...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Method to get the value of a field.

[Edit Descripton]

Template:Description:JForm/getValue

Syntax

getValue($field, $default=null, $group= '_default')
Parameter Name Default Value Description
$field $field The field to set.
$default null $default The default value of the field if empty.
$group '_default' $group The group the field is in.

Returns

boolean The value of the field or the default value if empty.

Defined in

libraries/joomla/form/form.php

Importing

jimport( 'joomla.form.form' );

Source Body

public function getValue($field, $default = null, $group = '_default')
{
        $return = null;

        // Get the field value if it exists.
        if (isset($this->_groups[$group][$field]) && is_object($this->_groups[$group][$field])) {
                $return = array_key_exists($field, $this->_data[$group]) ? $this->_data[$group][$field] : $default;
        }

        return $return;
}

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

Examples

<CodeExamplesForm />