You are here

function theme_crumbs_breadcrumb_current_page in Crumbs, the Breadcrumbs suite 7

Same name and namespace in other branches
  1. 7.2 crumbs.theme.inc \theme_crumbs_breadcrumb_current_page()

Default theme implementation for theme('crumbs_breadcrumb_current_page').

1 theme call to theme_crumbs_breadcrumb_current_page()
crumbs_get_breadcrumb_data in ./crumbs.module
Returns the breadcrumb data for the current page.

File

./crumbs.module, line 87
Provides an API for building breadcrumbs.

Code

function theme_crumbs_breadcrumb_current_page(array $item) {
  return check_plain($item['title']);
}