Skip to content

Instantly share code, notes, and snippets.

@Riaan-ZA
Created May 18, 2012 12:50
Show Gist options
  • Save Riaan-ZA/2725094 to your computer and use it in GitHub Desktop.
Save Riaan-ZA/2725094 to your computer and use it in GitHub Desktop.
Drupal 7: Breadcrumbs in ul
if (!empty($breadcrumb)) {
$crumbs = '<ul class="breadcrumb">';
$lastItem = count($breadcrumb) - 1;
foreach($breadcrumb as $index=>$value) {
if ($index == $lastItem) {
$crumbs .= '<li class="breadcrumb-last">'.t($value).'</li>';
}
else {
$crumbs .= '<li>'.t($value).'</li>';
}
}
$crumbs .= '</ul>';
}
return $crumbs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment