You are here

function commons_connect_breadcrumb in Drupal Commons 6.2

Breadcrumb themeing

File

themes/commons_connect/template.php, line 7

Code

function commons_connect_breadcrumb($breadcrumb) {
  if (!empty($breadcrumb)) {
    $html = '<div class="crumbtitle">' . t('You are here:') . '</div>';
    $html .= '<div class="breadcrumb">' . implode(' &raquo; ', $breadcrumb) . '</div>';
    return $html;
  }
}