You are here

function hook_nodequeue_info in Nodequeue 7.2

Expose nodequeue info.

See also

nodequeue_api_info()

2 functions implement hook_nodequeue_info()

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

nodequeue_nodequeue_info in ./nodequeue.module
Implements hook_nodequeue_info().
smartqueue_nodequeue_info in modules/smartqueue/smartqueue.module
Implements hook_nodequeue_info().
1 invocation of hook_nodequeue_info()
nodequeue_api_info in ./nodequeue.module
Collect info about all of the possible nodequeue types from owning modules.

File

./nodequeue.api.php, line 53

Code

function hook_nodequeue_info() {

  // This example show how the built-in queues are declared.
  return array(
    'nodequeue' => array(
      'title' => t('Simple queue'),
      'description' => t('Simple queues have just one subqueue. Nodes put into a queue are added to the back of the queue; when a node is added to a full queue, the node in the front of the queue will be popped out to make room.'),
    ),
    'smartqueue_taxonomy' => array(
      'title' => t('Taxonomy queue'),
      'description' => t('Each particular grouping of taxonomy terms from the selected vocabularies have their own unique subqueue. You can place nodes into any of these subqueues based on which terms that node has been tagged with. Using this with large or too many taxonomies may degrade performance.'),
    ),
  );
}