You are here

function plus1_perm in Plus 1 6

Same name and namespace in other branches
  1. 6.2 plus1.module \plus1_perm()

Implementation of hook_perm().

File

./plus1.module, line 10
A simple +1 voting widget module.

Code

function plus1_perm() {
  return array(
    'rate content',
    'administer the voting widget',
  );
}