You are here

function hook_queue_access in Nodequeue 7.2

Provide queue access control.

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

Parameters

stdClass $queue:

stdClass $account:

Return value

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

See also

nodequeue_api_queue_access()

3 functions implement hook_queue_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_queue_access in ./nodequeue.module
nodequeue_node_and_queue_access in ./nodequeue.module
Used by menu system to determine access to the node and the queue in question.
nodequeue_queue_access in ./nodequeue.module
Return TRUE If the specified account has access to manipulate this queue.

File

./nodequeue.api.php, line 237

Code

function hook_queue_access($queue, $account) {
}