function rave_alerts_permission in RAVE Alerts 7
Same name and namespace in other branches
- 1.0.x rave_alerts.module \rave_alerts_permission()
Implemets of hook_permission().
File
- ./
rave_alerts.module, line 54 - CU Alerts module
Code
function rave_alerts_permission() {
return array(
'administer rave alerts' => array(
'title' => t('Administer RAVE Alerts'),
'description' => t('Adminstrer RAVE configuration.'),
'restrict access' => TRUE,
),
);
}