1.20.x installer.module installer_permission()

Implements hook_permission().

File

modules/installer/installer.module, line 10
Handles installation and updates of contributed projects.

Code

function installer_permission() {
  return array(
    'use installer browser' => array(
      'title' => t('Install and update modules, themes & layouts'),
      'description' => t('Allows the user to browse for and install new modules, themes and layouts.'),
      'restrict access' => TRUE,
    )
  );
}