You are here

function variable_get_group in Variable 7

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

Get variable group information.

Parameters

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

Related topics

3 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.

File

./variable.module, line 186
Variable API module

Code

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