You are here

function hook_nodequeue_autocomplete in Nodequeue 7.2

Provide an alternative way to provide auto-complete results.

If this hook is implemented, the builtin query in nodequeue is not used, and the results from this hook are returned instead.

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

Parameters

object $queue:

object $subqueue:

string $string:

object $query:

See also

nodequeue_api_autocomplete()

1 function implements hook_nodequeue_autocomplete()

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

smartqueue_taxonomy_nodequeue_autocomplete in modules/smartqueue/smartqueue.module
Implements hook_nodequeue_autocomplete().

File

./nodequeue.api.php, line 220

Code

function hook_nodequeue_autocomplete($queue, $subqueue, $string, $query) {
}