You are here

function nodequeue_perm in Nodequeue 5.2

Same name and namespace in other branches
  1. 5 nodequeue.module \nodequeue_perm()
  2. 6.2 nodequeue.module \nodequeue_perm()

Implementation of hook_perm

File

./nodequeue.module, line 9

Code

function nodequeue_perm() {
  return array(
    'manipulate queues',
    'administer nodequeue',
    'manipulate all queues',
  );
}