API16

JElementList/fetchElement

From Joomla! Documentation

< API16:JElementList

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.

Description[edit]

Fetch the HTML code for the parameter element.


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

Syntax[edit]

fetchElement($name, $value, &$node, $control_name)
Parameter Name Default Value Description
$name The field name.
$value The value of the field.
&$node The current XML node.
$control_name The name of the HTML control.

Defined in[edit]

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

Importing[edit]

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

Source Body[edit]

public function fetchElement($name, $value, &$node, $control_name)
{
        $ctrl   = $control_name .'['. $name .']';
        $attribs        = ' ';

        if ($v = $node->attributes('size')) {
                $attribs        .= 'size="'.$v.'"';
        }
        if ($v = $node->attributes('class')) {
                $attribs        .= 'class="'.$v.'"';
        } else {
                $attribs        .= 'class="inputbox"';
        }
        if ($m = $node->attributes('multiple'))
        {
                $attribs        .= 'multiple="multiple"';
                $ctrl           .= '[]';
        }

        return JHtml::_(
                'select.genericlist',
                $this->_getOptions($node),
                $ctrl,
                array(
                        'id' => $control_name.$name,
                        'list.attr' => $attribs,
                        'list.select' => $value
                )
        );
}


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

Examples[edit]

Code Examples[edit]