You are here

function hook_nodequeue_add in Nodequeue 7.2

Triggered when a node is added to a sub-queue, after adding the sub-queue.

This hook is invoked after the update has been sent to apachesolr module, if it is enabled.

Parameters

int $qid: The sub-queue id.

int $nid: The node id

See also

nodequeue_subqueue_add()

2 functions implement hook_nodequeue_add()

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

action_nodequeue_add in includes/nodequeue.actions.inc
Old-style action to add a node to a queue.
nodequeue_nodequeue_add in ./nodequeue.module
Implements hook_nodequeue_add()
1 invocation of hook_nodequeue_add()
nodequeue_subqueue_add in ./nodequeue.module
Add a node to a subqueue.

File

./nodequeue.api.php, line 16

Code

function hook_nodequeue_add($qid, $nid) {
}