You are here

function comment_delete_perm in Comment Delete 6

Implementation of hook_perm().

File

./comment_delete.module, line 6

Code

function comment_delete_perm() {
  return array(
    'delete own comments',
    'delete own comments at anytime',
    'delete any comment',
    'delete any comments at anytime',
    'delete all comment replies',
    'move all replies up',
  );
}