function heartbeat_comments_perm in Heartbeat 6.4
Implementation of hook_perm().
File
- modules/
heartbeat_comments/ heartbeat_comments.module, line 17 - heartbeat_comments.module Heartbeat comments can come with two possible
Code
function heartbeat_comments_perm() {
return array(
'add heartbeat comment',
'administer heartbeat comments',
'delete own comments',
'delete any comment',
);
}