You are here

function views_handler_argument_term_node_tid_depth::set_breadcrumb in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 modules/taxonomy/views_handler_argument_term_node_tid_depth.inc \views_handler_argument_term_node_tid_depth::set_breadcrumb()
  2. 7.3 modules/taxonomy/views_handler_argument_term_node_tid_depth.inc \views_handler_argument_term_node_tid_depth::set_breadcrumb()

Give an argument the opportunity to modify the breadcrumb, if it wants. This only gets called on displays where a breadcrumb is actually used.

The breadcrumb will be in the form of an array, with the keys being the path and the value being the already sanitized title of the path.

Overrides views_handler_argument::set_breadcrumb

File

modules/taxonomy/views_handler_argument_term_node_tid_depth.inc, line 55

Class

views_handler_argument_term_node_tid_depth
Argument handler for taxonomy terms with depth.

Code

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