You are here

function nodequeue_handler_field_all_queues::option_definition in Nodequeue 6.2

Same name and namespace in other branches
  1. 7.3 includes/views/nodequeue_handler_field_all_queues.inc \nodequeue_handler_field_all_queues::option_definition()
  2. 7.2 includes/views/nodequeue_handler_field_all_queues.inc \nodequeue_handler_field_all_queues::option_definition()

File

includes/views/nodequeue_handler_field_all_queues.inc, line 10
Field handler for all queues.

Class

nodequeue_handler_field_all_queues
@file Field handler for all queues.

Code

function option_definition() {
  $options = parent::option_definition();
  $options['link_to_queue'] = array(
    'default' => TRUE,
  );
  $options['limit'] = array(
    'default' => FALSE,
  );
  $options['qids'] = array(
    'default' => array(),
  );
  return $options;
}