function views_breadcrumb_block_view in Views breadcrumb 7
Implements hook_block_view().
File
- ./
views_breadcrumb.module, line 24 - This module will provide a block that will helps to set the bread crumb for views pages.
Code
function views_breadcrumb_block_view($delta = '') {
$block = array();
switch ($delta) {
case 'views_breadcrumb_block':
$block['subject'] = NULL;
$block['content'] = breadcrumb_display();
break;
}
return $block;
}