I want to use $breadcrumb variable in toolbar.tpl.php (administration toolbar). page.tpl.php processed after toolbar.tpl.php so
hook_preprocess_page(){} and hook_preprocess_toolbar(){} useless
how can i do that ?
I want to use $breadcrumb variable in toolbar.tpl.php (administration toolbar). page.tpl.php processed after toolbar.tpl.php so
hook_preprocess_page(){} and hook_preprocess_toolbar(){} useless
how can i do that ?
You can build the breadcrumb yourself using a combination of
drupal_get_breadcrumb()
andtheme_breadcrumb()
, like so: