function theme_breadcrumb

7.x theme.inc theme_breadcrumb($variables)
6.x theme.inc theme_breadcrumb($breadcrumb)

Return a themed breadcrumb trail.

Parameters

$breadcrumb: An array containing the breadcrumb links.

Return value

a string containing the breadcrumb output.

Related topics

1 theme call to theme_breadcrumb()
template_preprocess_page in drupal-6.x/includes/theme.inc
Process variables for page.tpl.php

File

drupal-6.x/includes/theme.inc, line 1301
The theme system, which controls the output of Drupal.

Code

function theme_breadcrumb($breadcrumb) {
  if (!empty($breadcrumb)) {
    return '<div class="breadcrumb">' . implode(' ยป ', $breadcrumb) . '</div>';
  }
}