theme_breadcrumb($breadcrumb)
drupal/includes/theme.inc, line 1216
Return a themed breadcrumb trail.
$breadcrumb An array containing the breadcrumb links.
a string containing the breadcrumb output.
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
function theme_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
return '<div class="breadcrumb">' . implode(' » ', $breadcrumb) . '</div>';
}
}