API16

Difference between revisions of "JForm/getValue"

From Joomla! Documentation

< API16:JForm
(New page: ===Description=== Method to get the value of a field. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowi...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JForm/getValue|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JForm/getValue}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 54: Line 54:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JForm/getValue|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JForm/getValue}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 69: Line 69:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 21:53, 13 May 2013

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 get the value of a field.

[<! removed edit link to red link >]

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

Syntax[edit]

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[edit]

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

Defined in[edit]

libraries/joomla/form/form.php

Importing[edit]

jimport( 'joomla.form.form' );

Source Body[edit]

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

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />