API16

API16:JParameter/render

From Joomla! Documentation

Revision as of 22:52, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Render. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Descrip...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Render.

[Edit Descripton]

Template:Description:JParameter/render

Syntax

render($name= 'params', $group= '_default')
Parameter Name Default Value Description
$name 'params' The name of the control, or the default text area if a setup file is not found.
$group '_default'

Returns

string HTML

Defined in

libraries/joomla/html/parameter.php

Importing

jimport( 'joomla.html.parameter' );

Source Body

public function render($name = 'params', $group = '_default')
{
        if (!isset($this->_xml[$group])) {
                return false;
        }

        $params = $this->getParams($name, $group);
        $html = array ();

        if ($description = $this->_xml[$group]->attributes('description')) {
                // add the params description to the display
                $desc   = JText::_($description);
                $html[] = '<p class="paramrow_desc">'.$desc.'</p>';
        }

        foreach ($params as $param) {
                if ($param[0]) {
                        $html[] = $param[0];
                        $html[] = $param[1];
                } else {
                        $html[] = $param[1];
                }
        }

        if (count($params) < 1) {
                $html[] = "<p class=\"noparams\">".JText::_('THERE_ARE_NO_PARAMETERS_FOR_THIS_ITEM')."</p>";
        }

        return implode(PHP_EOL, $html);
}

[Edit See Also] Template:SeeAlso:JParameter/render

Examples

<CodeExamplesForm />