JForm/getGroups
From Joomla! Documentation
< API16:JForm
The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Method to get a list of groups.
<! removed transcluded page call, red link never existed >
Syntax[edit]
getGroups($parent=null)
Parameter Name | Default Value | Description |
---|---|---|
$parent | null |
Returns[edit]
array An array of groups.
Defined in[edit]
libraries/joomla/form/form.php
Importing[edit]
jimport( 'joomla.form.form' );
Source Body[edit]
public function getGroups($parent = null)
{
if($parent != null)
{
return isset($this->_fieldsets[$parent]['children']) ? $this->_fieldsets[$parent]['children'] : array();
}
return array_keys($this->_groups);
}
<! removed transcluded page call, red link never existed >
I can't find the getGroups function in Joomla 1.6.1 JForm source code. It seems not to exists.