API16

JElementTextarea/fetchElement

From Joomla! Documentation

< API16:JElementTextarea
Revision as of 05:14, 30 March 2010 by Doxiki (talk | contribs)

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.

[Edit Descripton]

Template:Description:JElementTextarea/fetchElement

Syntax[edit]

fetchElement($name, $value, &$node, $control_name)
Parameter Name Default Value Description
$name
$value
&$node
$control_name

Defined in[edit]

libraries/joomla/html/parameter/element/textarea.php

Importing[edit]

jimport( 'joomla.html.parameter.element.textarea' );

Source Body[edit]

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

<CodeExamplesForm />