API16

JElementList/fetchElement: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Fetch the HTML code for the parameter element. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JElementList/fetchElement|Edit Descr...
 
Doxiki (talk | contribs)
No edit summary
Line 25: Line 25:
|  The value of the field.  
|  The value of the field.  
|-
|-
|  
| &$node
|  
|  
|  The current XML node.  
|  The current XML node.  

Revision as of 10:14, 30 March 2010

Description

Fetch the HTML code for the parameter element.

[Edit Descripton]

Template:Description:JElementList/fetchElement

Syntax

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

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

Importing

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

Source Body

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
                )
        );
}

[Edit See Also] Template:SeeAlso:JElementList/fetchElement

Examples

<CodeExamplesForm />