function easy_breadcrumb_block_info in Easy Breadcrumb 7
Same name and namespace in other branches
- 7.2 easy_breadcrumb.module \easy_breadcrumb_block_info()
Implements hook_block_info().
Return value
Assoc the blocks' info.
File
- ./
easy_breadcrumb.module, line 103 - The Easy Breadcrumb module provides a block to be embedded in any page, typically at some place near the page's header. Easy Breadcrumb uses the URL (path alias) and the current page's title (when available) to obtain the breadcrumb's…
Code
function easy_breadcrumb_block_info() {
$block = array();
$block['easy_breadcrumb'] = array(
'info' => t('Easy Breadcrumb'),
'cache' => DRUPAL_CACHE_PER_PAGE,
);
return $block;
}