theme_breadcrumb($breadcrumb)
drupal/includes/theme.inc, line 532
Return a themed breadcrumb trail.
$breadcrumb An array containing the breadcrumb links.
a string containing the breadcrumb output.
| Name | Description |
|---|---|
| Themeable functions | Functions that display HTML, and which can be customized by themes. |
function theme_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
return '<div class="breadcrumb">'. implode(' » ', $breadcrumb) .'</div>';
}
}