function views_handler_filter_term_node_tid::option_definition

Overrides views_handler_filter_many_to_one::option_definition

2 calls to views_handler_filter_term_node_tid::option_definition()
views_handler_filter_term_node_tid_depth::option_definition in modules/taxonomy/views_handler_filter_term_node_tid_depth.inc
Information about options for all kinds of purposes will be held here.
views_handler_filter_term_node_tid_depth_join::option_definition in modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc
Information about options for all kinds of purposes will be held here.
2 methods override views_handler_filter_term_node_tid::option_definition()
views_handler_filter_term_node_tid_depth::option_definition in modules/taxonomy/views_handler_filter_term_node_tid_depth.inc
Information about options for all kinds of purposes will be held here.
views_handler_filter_term_node_tid_depth_join::option_definition in modules/taxonomy/views_handler_filter_term_node_tid_depth_join.inc
Information about options for all kinds of purposes will be held here.

File

modules/taxonomy/views_handler_filter_term_node_tid.inc, line 56

Class

views_handler_filter_term_node_tid
Filter by term id.

Code

public function option_definition() {
  $options = parent::option_definition();
  $options['type'] = array(
    'default' => 'textfield',
  );
  $options['limit'] = array(
    'default' => TRUE,
    'bool' => TRUE,
  );
  $options['vocabulary'] = array(
    'default' => 0,
  );
  $options['hierarchy'] = array(
    'default' => 0,
  );
  $options['error_message'] = array(
    'default' => TRUE,
    'bool' => TRUE,
  );
  $options['optgroups'] = array(
    'default' => 0,
  );
  return $options;
}