function notifications_perm in Notifications 6.2
Same name and namespace in other branches
- 5 notifications.module \notifications_perm()
- 6.4 notifications.module \notifications_perm()
- 6 notifications.module \notifications_perm()
- 6.3 notifications.module \notifications_perm()
Implementation of hook_perms()
This module defines the following permissions
- administer notifications = Full access to all administration for the module
- maintain own subscriptions = Create / delete own subscriptions
- manage own subscriptions = Access the subscriptions management tab
- manage all subscriptions = Administer other users subscriptions
File
- ./
notifications.module, line 292 - Notifications module
Code
function notifications_perm() {
return array(
'administer notifications',
'maintain own subscriptions',
'manage own subscriptions',
'manage all subscriptions',
);
}