From 26735ac5dd06c064bb816bcf264fbeb44ac3b0b7 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 23 Nov 2003 10:41:04 +0000 Subject: - Committed phase 3 of JonBob's menu changes. Adds an API for modules to define titles and breadcrumbs for their pages, and updates the theme system to display them. --- includes/theme.inc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'includes/theme.inc') diff --git a/includes/theme.inc b/includes/theme.inc index 79d39b857..3e8af9546 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -40,6 +40,12 @@ function theme_header($title = "") { $output .= theme("blocks", "all"); $output .= ""; + $output .= theme("breadcrumb", drupal_get_breadcrumb()); + $output .= "

" . drupal_get_title() . "

"; + if ($help = menu_get_active_help()) { + $output .= "$help
"; + } + return $output; } -- cgit v1.2.3