API16

API16:JForm/getGroups

From Joomla! Documentation

Description

Method to get a list of groups.


<! removed transcluded page call, red link never existed >

Syntax

getGroups($parent=null)
Parameter Name Default Value Description
$parent null

Returns

array An array of groups.

Defined in

libraries/joomla/form/form.php

Importing

jimport( 'joomla.form.form' );

Source Body

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 >

Examples

Code Examples

This function seem not to exists in joomla 1.6.1

I can't find the getGroups function in Joomla 1.6.1 JForm source code. It seems not to exists.

YannCharlou 07:39, 3 April 2011 (CDT) Edit comment