API16:JParameter/getGroups
From Joomla! Documentation
Description
Get the number of params in each group.
Syntax
getGroups()
Returns
array Array of all group names as key and param count as value.
Defined in
libraries/joomla/html/parameter.php
Importing
jimport( 'joomla.html.parameter' );
Source Body
public function getGroups()
{
if (!is_array($this->_xml)) {
return false;
}
$results = array();
foreach ($this->_xml as $name => $group) {
$results[$name] = $this->getNumParams($name);
}
return $results;
}
Examples
Code Examples