public function ViewExecutable::getBreadcrumb

Get the breadcrumb used for this view.

Parameters

$set: If true, use drupal_set_breadcrumb() to install the breadcrumb.

File

drupal/core/modules/views/lib/Drupal/views/ViewExecutable.php, line 1735
Definition of Drupal\views\ViewExecutable.

Class

ViewExecutable
An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.

Namespace

Drupal\views

Code

public function getBreadcrumb($set = FALSE) {

  // Now that we've built the view, extract the breadcrumb.
  $base = TRUE;
  $breadcrumb = array();
  if (!empty($this->build_info['breadcrumb'])) {
    foreach ($this->build_info['breadcrumb'] as $path => $title) {

      // Check to see if the frontpage is in the breadcrumb trail; if it
      // is, we'll remove that from the actual breadcrumb later.
      if ($path == config('system.site')
        ->get('page.front')) {
        $base = FALSE;
        $title = t('Home');
      }
      if ($title) {
        $breadcrumb[] = l($title, $path, array(
          'html' => TRUE,
        ));
      }
    }
    if ($set) {
      if ($base) {
        $breadcrumb = array_merge(drupal_get_breadcrumb(), $breadcrumb);
      }
      drupal_set_breadcrumb($breadcrumb);
    }
  }
  return $breadcrumb;
}