You are here

function easy_breadcrumb_block_view in Easy Breadcrumb 7.2

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

Implements hook_block_view().

File

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

Code

function easy_breadcrumb_block_view($delta = NULL) {
  $block = array();
  switch ($delta) {
    case 'easy_breadcrumb':
      $block['subject'] = NULL;
      $block['content'] = theme('easy_breadcrumb');
      break;
  }
  return $block;
}