theme_breadcrumb($breadcrumb)theme_breadcrumb($variables)Return a themed breadcrumb trail.
$breadcrumb An array containing the breadcrumb links.
a string containing the breadcrumb output.
drupal/includes/theme.inc, line 631
<?php
function theme_breadcrumb($breadcrumb) {
if (!empty($breadcrumb)) {
return '<div class="breadcrumb">'. implode(' » ', $breadcrumb) .'</div>';
}
}
?>