function variable_build_groups in Variable 6
Build variable groups information
1 call to variable_build_groups()
- variable_group in ./
variable.module - Get variable group information
File
- ./
variable.inc, line 33 - Variable API module. Extended API.
Code
function variable_build_groups() {
variable_module_include();
$groups = module_invoke_all('variable_group_info');
drupal_alter('variable_group_info', $groups);
return $groups;
}