1 installer.module | installer_permission() |
Implements hook_permission().
File
- core/
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,
'warning' => t('Allows <em>any</em> functionality to be added to the site.'),
)
);
}