function theme_crumbs_breadcrumb_link in Crumbs, the Breadcrumbs suite 7
Same name and namespace in other branches
- 7.2 crumbs.theme.inc \theme_crumbs_breadcrumb_link()
Default theme implementation for theme('crumbs_breadcrumb_link').
1 theme call to theme_crumbs_breadcrumb_link()
- crumbs_get_breadcrumb_data in ./
crumbs.module - Returns the breadcrumb data for the current page.
File
- ./
crumbs.module, line 79 - Provides an API for building breadcrumbs.
Code
function theme_crumbs_breadcrumb_link(array $item) {
$options = isset($item['localized_options']) ? $item['localized_options'] : array();
return l($item['title'], $item['href'], $options);
}