You are here

function vud_term_perm in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 6.3 vud_term/vud_term.module \vud_term_perm()

Implementation of hook_perm().

File

vud_term/vud_term.module, line 11
Adds a voting widget to terms.

Code

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