/**
 * Method to get the filtering groups (null means no filtering)
 *
 * @return  mixed  Array of filtering groups or null.
 *
 * @since   1.6
 */
protected function getGroups()
{
    if (isset($this->element['groups'])) {
        return explode(',', $this->element['groups']);
    }
}