API15:JParameter/getGroups
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Get the number of params in each group
Description:JParameter/getGroups
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
function getGroups() { if (!is_array($this->_xml)) { return false; } $results = array(); foreach ($this->_xml as $name => $group) { $results[$name] = $this->getNumParams($name); } return $results; }
[Edit See Also] SeeAlso:JParameter/getGroups
Examples
<CodeExamplesForm />
