1 config.module | config_permission() |
Implements hook_permission().
File
- core/
modules/ config/ config.module, line 88 - Allows site administrators to modify configuration.
Code
function config_permission() {
$permissions['synchronize configuration'] = array(
'title' => t('Synchronize, import, and export configuration'),
'restrict access' => TRUE,
'warning' => t('Importing and synchronizing config allows access to, and manipulation of, all settings on the site.'),
);
return $permissions;
}