API16

JForm/getFieldAttribute: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m clean up
Line 2: Line 2:
Method to get a field attribute value.
Method to get a field attribute value.


<span class="editsection" style="font-size:76%;">
 
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>


<! removed transcluded page call, red link never existed >
<! removed transcluded page call, red link never existed >
Line 57: Line 55:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
<! removed transcluded page call, red link never existed >
<! removed transcluded page call, red link never existed >



Revision as of 14:01, 24 March 2017

Description

Method to get a field attribute value.


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

Syntax

getFieldAttribute($field, $attribute, $default, $group= '_default')
Parameter Name Default Value Description
$field $field The name of the field.
$attribute $attribute The name of the attribute.
$default $default The default value of the attribute.
$group '_default' $group The optional group of the field.

Returns

mixed The value of the attribute if set, otherwise the default value.

Defined in

libraries/joomla/form/form.php

Importing

jimport( 'joomla.form.form' );

Source Body

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

        // Get the field attribute if it exists.
        if (isset($this->_groups[$group][$field])) {
                $return = (string)$this->_groups[$group][$field]->attributes()->$attribute;
        }

        return $return !== null ? $return : $default;
}


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

Examples

<CodeExamplesForm />