You are here

function views_handler_argument_term_node_tid_depth_summary::set_breadcrumb 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::set_breadcrumb()

File

views_summary_taxonomy/views_handler_argument_term_node_tid_depth_summary.inc, line 50

Class

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

Code

function set_breadcrumb(&$breadcrumb) {
  if (empty($this->options['set_breadcrumb']) || !is_numeric($this->argument)) {
    return;
  }
  return views_taxonomy_set_breadcrumb($breadcrumb, $this);
}