JForm/getFieldAttribute: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Method to get a field attribute value.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<no... |
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>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 58: | Line 58: | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
<nowiki>[< | <nowiki>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Examples=== | ===Examples=== | ||
| Line 73: | Line 73: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] | |||
Revision as of 02:52, 14 May 2013
Description
Method to get a field attribute value.
[<! removed edit link to red link >]
<! 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 edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />