You are here

function easy_breadcrumb_block_info in Easy Breadcrumb 7.2

Same name and namespace in other branches
  1. 7 easy_breadcrumb.module \easy_breadcrumb_block_info()

Implements hook_block_info().

File

./easy_breadcrumb.module, line 115
The Easy Breadcrumb module provides a block to be embedded in any page.

Code

function easy_breadcrumb_block_info() {
  $block = array();
  $block['easy_breadcrumb'] = array(
    'info' => t('Easy Breadcrumb'),
    'cache' => DRUPAL_CACHE_PER_PAGE,
  );
  return $block;
}