You are here

function hook_nodequeue_delete in Nodequeue 7.2

Allow modules to react to a queue deletion.

@since After 7.x-2.0-beta, with just a qid @since After commit dd1f758 with the $queue parameter.

Parameters

int $qid: The id of the queue for which deletion was attempted.

array|object: An object containing the deleted queue, if found, an empty array otherwise.

See also

nodequeue_delete()

1 function implements hook_nodequeue_delete()

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

smartqueue_nodequeue_delete in modules/smartqueue/smartqueue.module
Implements hook_nodequeue_delete().
1 invocation of hook_nodequeue_delete()
nodequeue_delete in ./nodequeue.module
Delete a nodequeue.

File

./nodequeue.api.php, line 127

Code

function hook_nodequeue_delete($qid) {
}