function theme_breadcrumb

Same name and namespace in other branches
  1. 7.x drupal-7.x/includes/theme.inc \theme_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

Archivo

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

Código

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