function comment_notify_perm in Comment Notify 5
Same name and namespace in other branches
- 5.2 comment_notify.module \comment_notify_perm()
- 6 comment_notify.module \comment_notify_perm()
Implementation of hook_perm
File
- ./
comment_notify.module, line 103 - This module provides comment follow-up e-mail notification for anonymous and registered users.
Code
function comment_notify_perm() {
return array(
'Administer comment notify',
);
}