This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_views_pre_render(). | |
*/ | |
function HOOK_views_pre_render(&$view) { | |
if ($view->name == 'NAME') { | |
$breadcrumb = array(); | |
$breadcrumb[] = l(t('Home'), '<front>'); | |
$breadcrumb[] = l(drupal_get_title(), current_path()); | |
drupal_set_breadcrumb($breadcrumb); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implements hook_node_view(). | |
*/ | |
function HOOK_node_view($node, $view_mode, $langcode) { | |
if ($node->type == 'TYPE') { | |
$breadcrumb = array(); | |
$breadcrumb[] = l(t('Home'), '<front>'); | |
$breadcrumb[] = l(drupal_get_title(), current_path()); | |
drupal_set_breadcrumb($breadcrumb); | |
} |