API16:JParameter/render
From Joomla! Documentation
Description
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);
}
Examples
Code Examples