Skip to content

Instantly share code, notes, and snippets.

@kalinchernev
Created April 15, 2014 13:35
Show Gist options
  • Save kalinchernev/10733195 to your computer and use it in GitHub Desktop.
Save kalinchernev/10733195 to your computer and use it in GitHub Desktop.
Drupal helper to display the breadcrumbs - decoupled from the theme
<?php
/**
* Helper to display the breadcrumbs
* @return string Breadcrumbs markup
*/
function _display_breadcrubs() {
$breadcrumbs = drupal_get_breadcrumb();
return theme('breadcrumb', array('breadcrumb' => $breadcrumbs));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment