You are here

function hook_subqueue_access in Nodequeue 7.2

Provide sub-queue access control.

This hook is actually a callback for the module defining the queue instead of a generic hook.

Parameters

stdClass $sub_queue:

stdClass $account:

stdClass $queue:

Return value

NULL|TRUE|FALSE NULL and TRUE grant access. FALSE refuses it.

See also

nodequeue_api_subqueue_access()

1 function implements hook_subqueue_access()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

nodequeue_api_subqueue_access in ./nodequeue.module
Allows the owning module of a subqueue to restrict access to viewing and manipulating the queue.

File

./nodequeue.api.php, line 255

Code

function hook_subqueue_access($sub_queue, $account, $queue) {
}