function hosting_permission in Hosting 7.4
Same name and namespace in other branches
- 7.3 hosting.module \hosting_permission()
Implements hook_permission().
File
- ./
hosting.module, line 445 - Hosting module.
Code
function hosting_permission() {
return array(
'access hosting wizard' => array(
'title' => t('access hosting wizard'),
'description' => t("TODO Remove 'access hosting wizard', as it is not checked anywhere."),
),
'administer hosting queues' => array(
'title' => t('administer hosting queues'),
'description' => t('Configure the frequency that cron, backup and task events are process.'),
),
'administer hosting features' => array(
'title' => t('administer hosting features'),
'description' => t('Configure the exposed functionality of the hosting system.'),
),
'administer hosting' => array(
'title' => t('administer hosting'),
'description' => t('Configure and manage the hosting system.'),
),
'access disabled sites' => array(
'title' => t('access disabled sites'),
'description' => t('Access disabled sites.'),
),
'administer hosting settings' => array(
'title' => t('administer hosting settings'),
'description' => t('Configure general hosting settings.'),
),
);
}