function notify_perm in Notify 6
Same name and namespace in other branches
- 5.2 notify.module \notify_perm()
- 5 notify.module \notify_perm()
Implementation of hook_perm().
File
- ./
notify.module, line 189 - Notify module sends email digests of new content and comments.
Code
function notify_perm() {
return array(
'access notify',
'administer notify',
);
}