You are here

function crumbs_render_breadcrumb_item in Crumbs, the Breadcrumbs suite 6.2

1 call to crumbs_render_breadcrumb_item()
theme_crumbs_breadcrumb in ./crumbs.breadcrumb.inc
Default theme implementation for theme('crumbs_breadcrumb'). The default implementation uses the theme's implementation of theme('breadcrumb'). Themes that are crumbs-aware can override this theme hook to…

File

./crumbs.breadcrumb.inc, line 32

Code

function crumbs_render_breadcrumb_item(array $item) {
  $options = $item['link_options'];
  return l($item['link_title'], $item['link_path'], $options);
}