function crumbs_theme in Crumbs, the Breadcrumbs suite 7
Same name and namespace in other branches
- 6.2 crumbs.module \crumbs_theme()
- 7.2 crumbs.info.inc \crumbs_theme()
Implements hook_theme().
File
- ./
crumbs.module, line 65 - Provides an API for building breadcrumbs.
Code
function crumbs_theme($existing, $type, $theme, $path) {
return array(
'crumbs_breadcrumb_link' => array(
'item' => NULL,
),
'crumbs_breadcrumb_current_page' => array(
'item' => NULL,
),
);
}