You are here

function variable_get_group in Variable 7.2

Same name and namespace in other branches
  1. 7 variable.module \variable_get_group()

Get variable group information.

Parameters

$group: Group name. Will return all if not name.

Related topics

4 calls to variable_get_group()
variable_access in ./variable.module
Check access to variable
variable_admin_page_group in variable_admin/variable_admin.inc
Variable overview, by group
variable_realm_edit_variables_form in variable_realm/variable_realm.form.inc
Edit variables for realm.
variable_realm_select_variables_form in variable_realm/variable_realm.form.inc
Select variables for realm.

File

./variable.module, line 188
Variable API module

Code

function variable_get_group($group = NULL) {
  return _variable_info('group', $group);
}