system_permission

7 system.module system_permission()
8 system.module system_permission()

Implements hook_permission().

File

modules/system/system.module, line 214
Configuration system that lets administrators modify the workings of the site.

Code

function system_permission() {
  return array(
    'administer modules' => array(
      'title' => t('Administer modules'),
    ), 
    'administer site configuration' => array(
      'title' => t('Administer site configuration'), 
      'restrict access' => TRUE,
    ), 
    'administer themes' => array(
      'title' => t('Administer themes'),
    ), 
    'administer software updates' => array(
      'title' => t('Administer software updates'), 
      'restrict access' => TRUE,
    ), 
    'administer actions' => array(
      'title' => t('Administer actions'),
    ), 
    'access administration pages' => array(
      'title' => t('Use the administration pages and help'),
    ), 
    'access site in maintenance mode' => array(
      'title' => t('Use the site in maintenance mode'),
    ), 
    'view the administration theme' => array(
      'title' => t('View the administration theme'), 
      'description' => variable_get('admin_theme') ? '' : t('This is only used when the site is configured to use a separate administration theme on the <a href="@appearance-url">Appearance</a> page.', array('@appearance-url' => url('admin/appearance'))),
    ), 
    'access site reports' => array(
      'title' => t('View site reports'),
    ), 
    'block IP addresses' => array(
      'title' => t('Block IP addresses'),
    ),
  );
}
Login or register to post comments