You are here

function nodequeue_perm in Nodequeue 6.2

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

Implementation of hook_perm

File

./nodequeue.module, line 18
Maintains queues of nodes in arbitrary order.

Code

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