You are here

function vud_comment_perm in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 6.3 vud_comment/vud_comment.module \vud_comment_perm()

Implementation of hook_perm().

File

vud_comment/vud_comment.module, line 14
Adds a voting widget to comments.

Code

function vud_comment_perm() {
  return array(
    'administer vote up/down on comments',
    'use vote up/down on comments',
  );
}