JElementTextarea/fetchElement: Difference between revisions
From Joomla! Documentation
New page:
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JElementTe... |
No edit summary |
||
| Line 23: | Line 23: | ||
| | | | ||
|- | |- | ||
| | | &$node | ||
| | | | ||
| | | | ||
Revision as of 10:14, 30 March 2010
Template:Description:JElementTextarea/fetchElement
Syntax
fetchElement($name, $value, &$node, $control_name)
| Parameter Name | Default Value | Description |
|---|---|---|
| $name | ||
| $value | ||
| &$node | ||
| $control_name |
Defined in
libraries/joomla/html/parameter/element/textarea.php
Importing
jimport( 'joomla.html.parameter.element.textarea' );
Source Body
public function fetchElement($name, $value, &$node, $control_name)
{
$rows = $node->attributes('rows');
$cols = $node->attributes('cols');
$class = ($node->attributes('class') ? 'class="'.$node->attributes('class').'"' : 'class="text_area"');
// convert <br /> tags so they are not visible when editing
$value = str_replace('<br />', "\n", $value);
return '<textarea name="'.$control_name.'['.$name.']" cols="'.$cols.'" rows="'.$rows.'" '.$class.' id="'.$control_name.$name.'" >'.$value.'</textarea>';
}
[Edit See Also] Template:SeeAlso:JElementTextarea/fetchElement
Examples
<CodeExamplesForm />