You are here

function views_handler_argument_term_node_tid_depth_summary::option_definition in Views Hacks 6

Same name and namespace in other branches
  1. 7 views_summary_taxonomy/views_handler_argument_term_node_tid_depth_summary.inc \views_handler_argument_term_node_tid_depth_summary::option_definition()

File

views_summary_taxonomy/views_handler_argument_term_node_tid_depth_summary.inc, line 6

Class

views_handler_argument_term_node_tid_depth_summary
Argument handler for taxonomy terms with depth and supporting summary view.

Code

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