drupal_get_breadcrumb

  1. drupal
    1. 4.7
    2. 5
    3. 6 common.inc
    4. 7 common.inc
Versions
4.7 – 7 drupal_get_breadcrumb()

Get the breadcrumb trail for the current page.

▾ 4 functions call drupal_get_breadcrumb()

chameleon_page in themes/chameleon/chameleon.theme
phptemplate_page in themes/engines/phptemplate/phptemplate.engine
Prepare the values passed to the theme_page function to be passed into a pluggable template engine.
theme_page in includes/theme.inc
Return an entire Drupal page displaying the supplied content.
user_admin_perm in modules/user.module
Menu callback: administer permissions.

Code

includes/common.inc, line 90

<?php
function drupal_get_breadcrumb() {
  $breadcrumb = drupal_set_breadcrumb();

  if (is_null($breadcrumb)) {
    $breadcrumb = menu_get_active_breadcrumb();
  }

  return $breadcrumb;
}
?>