function views_handler_argument_term_node_tid_depth::option_definition

Overrides views_handler_argument::option_definition

File

modules/taxonomy/views_handler_argument_term_node_tid_depth.inc, line 21

Class

views_handler_argument_term_node_tid_depth
Argument handler for taxonomy terms with depth.

Code

public function option_definition() {
  $options = parent::option_definition();
  $options['depth'] = array(
    'default' => 0,
  );
  $options['break_phrase'] = array(
    'default' => FALSE,
    'bool' => TRUE,
  );
  $options['set_breadcrumb'] = array(
    'default' => FALSE,
    'bool' => TRUE,
  );
  $options['use_taxonomy_term_path'] = array(
    'default' => FALSE,
    'bool' => TRUE,
  );
  return $options;
}