You are here

function hook_nodequeue_remove in Nodequeue 7.2

Triggered when nodes are removed from a sub-queue.

This is invoked in a loop for all removed nodes, after the queue has been updated.

Parameters

int $qid: The subqueue id.

int $nid: The node id

See also

nodequeue_subqueue_remove()

2 functions implement hook_nodequeue_remove()

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

action_nodequeue_remove in includes/nodequeue.actions.inc
Old-style action to remove a node from a queue.
nodequeue_nodequeue_remove in ./nodequeue.module
Implements hook_nodequeue_remove().
1 invocation of hook_nodequeue_remove()
nodequeue_subqueue_remove in ./nodequeue.module
Remove a node or node(s) from a nodequeue by position.

File

./nodequeue.api.php, line 32

Code

function hook_nodequeue_remove($qid, $nid) {
}