API16

API16:JParameter/getGroups

From Joomla! Documentation

Revision as of 01:58, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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