function notifications_perm in Notifications 5
Same name and namespace in other branches
- 6.4 notifications.module \notifications_perm()
- 6 notifications.module \notifications_perm()
- 6.2 notifications.module \notifications_perm()
- 6.3 notifications.module \notifications_perm()
Implementation of hook_perms()
File
- ./
notifications.module, line 146 - Notifications module
Code
function notifications_perm() {
return array_merge(array(
'administer notifications',
'maintain own subscriptions',
));
}