|
pane->startPane("menu-pane");
echo $this->pane->startPanel(JText :: _('Parameters - Basic'), "param-page");
echo $this->urlparams->render('urlparams');
if(count($this->params->getParams('params'))) :
echo $this->params->render('params');
endif;
if(!count($this->params->getNumParams('params')) && !count($this->urlparams->getNumParams('urlparams'))) :
echo " ".JText::_('There are no parameters for this item')." ";
endif;
echo $this->pane->endPanel();
if($params = $this->advanced->render('params')) :
echo $this->pane->startPanel(JText :: _('Parameters - Advanced'), "advanced-page");
echo $params;
echo $this->pane->endPanel();
endif;
if ($this->comp && ($params = $this->comp->render('params'))) :
echo $this->pane->startPanel(JText :: _('Parameters - Component'), "component-page");
echo $params;
echo $this->pane->endPanel();
endif;
if ($this->sysparams && ($params = $this->sysparams->render('params'))) :
echo $this->pane->startPanel(JText :: _('Parameters - System'), "system-page");
echo $params;
echo $this->pane->endPanel();
endif;
echo $this->pane->endPane();
?>
|