By default, Drupal will use the Navigation menu for the breadcrumb. This module allows you to use the menu the current page belongs to for the breadcrumb.
As an added bonus, it also allows you to append the page title to the breadcrumb (either as a clickable url or not) and hide the breadcrumb if it only contains the link to the front page.
'); break; } return $output; } /** * Implementation of hook_menu(). */ function menu_breadcrumb_menu() { $items['admin/config/user-interface/menu-breadcrumb'] = array( 'title' => 'Menu Breadcrumb', 'description' => 'Configure menu breadcrumb.', 'page callback' => 'drupal_get_form', 'page arguments' => array('menu_breadcrumb_admin_settings_form'), 'access arguments' => array('administer site configuration'), 'type' => MENU_NORMAL_ITEM, ); return $items; } /** * Default menu item. * If the module is not yet configured, we only need this * as a starting point. This determines the default weight * and 'enabled' status for any new menus. */ function _menu_breadcrumb_default_menu() { return array( 'menu_breadcrumb_default_menu' => array( 'enabled' => 1, 'weight' => 0, 'type' => 'menu_breadcrumb_default_menu', ), ); } /** * Get the menu selection configuration. * * @return * Array of menu selections and weights. */ function _menu_breadcrumb_get_menus() { static $menus; if (!isset($menus)) { // Fetch stored or default settings. $menus = variable_get('menu_breadcrumb_menus', _menu_breadcrumb_default_menu()); // Load the pattern match cache (to avoid any unnecessary regex matching). // Submitting the settings form requires us to rebuild this cache, as // the patterns may have changed. $match_cache = variable_get('menu_breadcrumb_pattern_matches', array()); $match_cache_rebuild = variable_get('menu_breadcrumb_pattern_matches_rebuild', FALSE); if ($match_cache_rebuild) { variable_set('menu_breadcrumb_pattern_matches_rebuild', FALSE); $match_cache_old = $match_cache; $match_cache = array(); } else { $match_cache_old = array(); } // Find new/unknown menus. If rebuilding the pattern match cache, // we also treat previously-matched menus (i.e. those currently // 'replaced' by a pattern) as new. $drupal_menu_names = menu_get_names(); $unknown_menu_names = array_diff($drupal_menu_names, array_keys($menus), array_keys($match_cache)); if ($unknown_menu_names) { $new_menus = _menu_breadcrumb_process_unknown_menus($unknown_menu_names, $menus, $match_cache_old, $match_cache_rebuild); } else { $new_menus = array(); } // Check new menus against the patterns. if ($match_cache_rebuild) { // We need to check all menus (old and new), as the // patterns may have been modified. $new_menus = array_merge($new_menus, $menus); $menus = array(); } if ($new_menus) { // $menus and $match_cache are updated by reference. _menu_breadcrumb_process_new_menus($new_menus, $menus, $match_cache, $match_cache_rebuild); } // Remove any defunct menu names. Only visible if we are showing // the admin settings form, so don't waste time processing this // otherwise. if ($_GET['q'] == 'admin/config/menu_breadcrumb') { $current_menu_names = array_merge($drupal_menu_names, array_unique($match_cache), array('menu_breadcrumb_default_menu')); $menus_current = array_intersect(array_keys($menus), $current_menu_names); $menus = array_intersect_key($menus, array_flip($menus_current)); } } return $menus; } /** * Helper for _menu_breadcrumb_get_menus(). * Determine whether each 'unknown' menu is genuinely new, * or was previously aggregated by a pattern match. * * @return * Array of new/unknown menus. */ function _menu_breadcrumb_process_unknown_menus($unknown_menu_names, $menus, $match_cache_old, $match_cache_rebuild) { $new_menus = array(); // 'devel' and 'admin_menu' cause known issues, and should not // be used for breadcrumbs. $disabled_by_default = array( 'devel', 'admin_menu', ); // consider hook here allowing modules to disable their menu // by default. foreach ($unknown_menu_names as $menu_name) { $previously_matched = ($match_cache_rebuild && array_key_exists($menu_name, $match_cache_old) && ($pattern = $match_cache_old[$menu_name]) && array_key_exists($pattern, $menus)); if ($previously_matched) { // Use the known enabled/weight values for this pattern. $enabled = $menus[$pattern]['enabled']; $weight = $menus[$pattern]['weight']; } else { // A genuinely unknown menu. Use default values. $disable = in_array($menu_name, $disabled_by_default, TRUE); $enabled = $disable ? FALSE : $menus['menu_breadcrumb_default_menu']['enabled']; $weight = $disable ? count($menus) : $menus['menu_breadcrumb_default_menu']['weight']; } $new_menus[$menu_name] = array( 'enabled' => $enabled, 'weight' => $weight, 'type' => 'menu', ); } return $new_menus; } /** * Helper for _menu_breadcrumb_get_menus(). * Compare new menus against the defined menu patterns, * and update the persistent variable caches accordingly. */ function _menu_breadcrumb_process_new_menus($new_menus, &$menus, &$match_cache, $match_cache_rebuild) { // Load the current regex patterns. $patterns = array(); $menu_patterns = variable_get('menu_breadcrumb_menu_patterns', MENU_BREADCRUMB_REGEX_DEFAULT); $menu_patterns = array_filter(explode("\n", $menu_patterns)); foreach ($menu_patterns as $pattern) { $part = array(); // Form validation has already ensured these will match. preg_match(MENU_BREADCRUMB_REGEX_MATCH, $pattern, $part); $regex = $part[1]; $title = $part[2]; $patterns[$regex] = $title; } // Remove any deprecated patterns. if ($match_cache_rebuild) { foreach ($new_menus as $menu_name => $menu) { if ($menu['type'] == 'pattern' && !in_array($menu_name, array_keys($patterns), TRUE)) { unset($new_menus[$menu_name]); } } } // Aggregate the menus which match the specified patterns. if ($patterns) { $update_match_cache = FALSE; foreach ($patterns as $regex => $title) { foreach ($new_menus as $menu_name => $menu) { if ($menu['type'] == 'menu') { if (preg_match($regex, $menu_name)) { // This menu name matches a pattern. Add the pattern // itself as a menu entry if it's new. if (!array_key_exists($regex, $menus)) { // Use existing weight and enabled status. $menus[$regex] = $new_menus[$menu_name]; $menus[$regex]['type'] = 'pattern'; } // Remove the matching name, and update the match cache. unset($new_menus[$menu_name]); $match_cache[$menu_name] = $regex; $update_match_cache = TRUE; } } } // We don't have the titles for new patterns yet in // 'menu_breadcrumb_menus', so add it now for the settings form. if (array_key_exists($regex, $menus)) { $menus[$regex]['title'] = $title; } } if ($update_match_cache) { variable_set('menu_breadcrumb_pattern_matches', $match_cache); } } // Merge in any remaining new menus that did not match any pattern // and update the 'menu_breadcrumb_menus' cache. $menus = array_merge($new_menus, $menus); foreach (array_keys($menus) as $menu_name) { $menus[$menu_name]['name'] = $menu_name; } uasort($menus, '_menu_breadcrumb_sort'); // sort by weight. variable_set('menu_breadcrumb_menus', $menus); } /** * Sort-by-weight comparison. * Sub-sort by menu_name, for consistency in the settings form. */ function _menu_breadcrumb_sort($menu1, $menu2) { $menu1_weight = !empty($menu1['weight']) ? $menu1['weight'] : 0; $menu2_weight = !empty($menu2['weight']) ? $menu2['weight'] : 0; if ($menu1_weight == $menu2_weight) { $menu1_name = !empty($menu1['name']) ? $menu1['name'] : ""; $menu2_name = !empty($menu2['name']) ? $menu2['name'] : ""; return ($menu1_name < $menu2_name) ? -1 : 1; } return ($menu1_weight < $menu2_weight) ? -1 : 1; } /** * Get the menu/selection list. * * @return * An array indicating the enabled status of each menu. */ function menu_breadcrumb_menu_list() { static $list; if (!isset($list)) { $menus = _menu_breadcrumb_get_menus(); unset($menus['menu_breadcrumb_default_menu']); $list = array(); foreach ($menus as $name => $menu) { $list[$name] = (bool) $menu['enabled']; } // Enable other modules to dynamically modify the menu list // (for example, to make the order depend upon the current // user's language preference). if ($hook = module_invoke_all('menu_breadcrumb_menu_list', $list)) { $list = $hook; } } return $list; } /** * Implementation of hook_init(). * * Set the active menu according to the current path. */ function menu_breadcrumb_init() { $is_front = drupal_is_front_page(); if (variable_get('menu_breadcrumb_determine_menu', 1) && !$is_front) { // Find the set of menus containing a link for the current page. $menu_item = menu_get_item(); $result = db_query("SELECT mlid, menu_name FROM {menu_links} WHERE link_path = :menu_item", array(':menu_item' => $menu_item['href'])); $menu_link_menus = array(); foreach ($result as $menu_link) { $menu_link_menus[$menu_link->menu_name] = TRUE; } // Choose the highest-priority 'Enabled' menu. $match_cache = variable_get('menu_breadcrumb_pattern_matches', array()); $menu_list = array_filter(menu_breadcrumb_menu_list()); // enabled menus. foreach (array_keys($menu_list) as $menu_name) { $is_pattern = (substr($menu_name, 0, 1) == '/' && substr($menu_name, -1, 1) == '/'); if ($is_pattern) { // Look for each of the $menu_link_menus in the pattern match cache. foreach (array_keys($menu_link_menus) as $menu_link_menu_name) { if (array_key_exists($menu_link_menu_name, $match_cache) && $match_cache[$menu_link_menu_name] == $menu_name) { menu_set_active_menu_names($menu_link_menu_name); break 2; } } } else { if (array_key_exists($menu_name, $menu_link_menus)) { $active_menus = menu_get_active_menu_names(); // Add our menu to the front of the active menus list so it takes // precedence over all other menus. array_unshift($active_menus, $menu_name); menu_set_active_menu_names($active_menus); break; } } } } // Generate the breadcrumbs using the active menu. $breadcrumb = drupal_get_breadcrumb(); if (variable_get('menu_breadcrumb_append_node_title', 0) == 1) { $node_title = filter_xss(menu_get_active_title(), array()); if (variable_get('menu_breadcrumb_append_node_url', 0) == 1) { $breadcrumb[] = $is_front ? l(t('Home'), '', '#suffix' => '
', '#value' => t("Note: If none of the enabled menus contain an item for a given page, Drupal will look in the 'Navigation' menu by default, even if it is 'disabled' here."), ); // Orderable list of menu selections. $form['include_exclude']['menu_breadcrumb_menus'] = array( '#tree' => TRUE, '#theme' => 'menu_breadcrumb_menus_table', ); // Load stored configuration. $menus = _menu_breadcrumb_get_menus(); $weight_delta = count($menus); foreach ($menus as $menu_name => $menu) { // Load menu titles. $title = !empty($menu['title']) ? $menu['title'] : $menu_name; if ($menu['type'] == 'menu') { $drupal_menu = menu_load($menu_name); if (!empty($drupal_menu['title'])) { $title = $drupal_menu['title']; } } // Ensure that regex patterns do not cause invalid id attributes. $safe_id_prefix = 'edit-menu-breadcrumb-menus-'. menu_breadcrumb_html_id($menu_name); $form['include_exclude']['menu_breadcrumb_menus'][$menu_name] = array( 'enabled' => array( '#type' => 'checkbox', '#id' => $safe_id_prefix .'-enabled', '#title' => '', '#default_value' => $menu['enabled'], ), 'label' => array( '#value' => $menu_name, ), 'weight' => array( '#type' => 'weight', '#default_value' => !empty($menu['weight']) ? (int) $menu['weight'] : 0, '#delta' => $weight_delta, '#id' => $safe_id_prefix .'-weight-wrapper', ), 'type' => array( '#type' => 'value', '#value' => $menu['type'], ), 'title' => array( '#type' => 'value', '#value' => $title, ), 'title_display' => array( '#type' => 'markup', '#markup' => check_plain($title), ), ); // Provide helpful title attributes for special menus. $title_field =& $form['include_exclude']['menu_breadcrumb_menus'][$menu_name]['title_display']; if ($menu['type'] == 'pattern') { $title_field['#value'] = t( '@name (@hint)', array( '@title' => t("See 'Advanced' settings below."), '@name' => $title_field['#markup'], '@hint' => t('pattern'), ) ); } elseif ($menu['type'] == 'menu_breadcrumb_default_menu') { $title_field['#value'] = t( '@text', array( '@title' => t('Default setting for future menus.'), '@text' => t('Default setting (see below)'), ) ); } } $form['include_exclude']['description'] = array( '#type' => 'markup', '#prefix' => '', '#suffix' => '
', '#value' => t('Default setting is not a real menu - it defines the default position and enabled status for future menus. If it is "enabled", Menu Breadcrumb will automatically consider newly-added menus when establishing breadcrumbs. If it is disabled, new menus will not be used for breadcrumbs until they have explicitly been enabled here.'), ); $form['include_exclude']['advanced'] = array( '#type' => 'fieldset', '#title' => t('Advanced'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['include_exclude']['advanced']['pattern_help'] = array( '#type' => 'markup', '#prefix' => '', '#suffix' => '
', '#value' => t("Enter regular expressions (one per line) to aggregate matching menu names into a single replacement title in the above list."), ); $form['include_exclude']['advanced']['menu_breadcrumb_menu_patterns'] = array( '#type' => 'textarea', '#title' => t('Patterns'), '#default_value' => variable_get('menu_breadcrumb_menu_patterns', MENU_BREADCRUMB_REGEX_DEFAULT), '#description' => t("Syntax: /regex/title/