crumbs.block.inc in Crumbs, the Breadcrumbs suite 7.2
File
crumbs.block.incView source
<?php
/**
* Implements hook_block_info()
*/
function crumbs_block_info() {
return array(
'breadcrumb' => array(
'info' => t('Breadcrumb (Crumbs)'),
'cache' => DRUPAL_NO_CACHE,
),
);
}
/**
* Implements hook_block_view()
*
* @param string $delta
*
* @return array
*/
function crumbs_block_view($delta = '') {
$block = array();
switch ($delta) {
case 'breadcrumb':
$html = crumbs()->page->breadcrumbHtml;
if (!empty($html)) {
$block['content'] = $html;
}
break;
}
return $block;
}
Functions
Name | Description |
---|---|
crumbs_block_info | Implements hook_block_info() |
crumbs_block_view | Implements hook_block_view() |