Last active
May 4, 2018 19:33
-
-
Save init90/18f01ac262738aaf184d4dfae34d84a3 to your computer and use it in GitHub Desktop.
Drupal 7, Updated breadcrumb for views page.
This file contains hidden or 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 MODULE_views_pre_render(&$view) { | |
if ($view->name == 'brand_page') { | |
$breadcrumbs = array(); | |
$breadcrumbs[] = l(t('Home'), '<front>'); | |
drupal_set_breadcrumb($breadcrumbs); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment