JForm/setValue: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Method to set 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>[<! removed edit link to red link >]</nowiki> | ||
</span> | </span> | ||
<! removed transcluded page call, red link never existed > | |||
===Syntax=== | ===Syntax=== | ||
| Line 53: | Line 53: | ||
<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 68: | Line 68: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API16]] | |||
Revision as of 02:53, 14 May 2013
Description
Method to set the value of a field.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
setValue($field, $value, $group= '_default')
| Parameter Name | Default Value | Description |
|---|---|---|
| $field | $field The field to set. | |
| $value | $value The value to set the field to. | |
| $group | '_default' | $group The group the field is in. |
Returns
boolean True if field exists, false otherwise.
Defined in
libraries/joomla/form/form.php
Importing
jimport( 'joomla.form.form' );
Source Body
public function setValue($field, $value, $group = '_default')
{
// Set the field if it exists.
if (isset($this->_groups[$group][$field]) && is_object($this->_groups[$group][$field])) {
$this->_data[$group][$field] = $value;
return true;
} else {
return false;
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
Above syntax is wrong and doesn't work in Joomla 1.6.1.
The correct is:
$this->form->setValue($field, $group , $value);