You are here

function user_configuration_api in Configuration Management 7

Implements hook_configuration_api().

File

includes/configuration.user.inc, line 6

Code

function user_configuration_api() {
  return array(
    'user_role' => array(
      'name' => t('Roles'),
      'feature_source' => TRUE,
      'default_hook' => 'user_default_roles',
      'default_file' => CONFIGURATION_DEFAULTS_INCLUDED,
    ),
    'user_permission' => array(
      'name' => t('Permissions'),
      'feature_source' => TRUE,
      'default_hook' => 'user_default_permissions',
      'default_file' => CONFIGURATION_DEFAULTS_INCLUDED,
    ),
  );
}