breadcrumb.vars.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "breadcrumb" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "breadcrumb" theme hook.
  8. *
  9. * See theme function for list of available variables.
  10. *
  11. * @param array $variables
  12. * An associative array of variables, passed by reference.
  13. *
  14. * @see bootstrap_breadcrumb()
  15. * @see theme_breadcrumb()
  16. *
  17. * @ingroup theme_preprocess
  18. */
  19. function bootstrap_preprocess_breadcrumb(array &$variables) {
  20. // Do not modify breadcrumbs if the Path Breadcrumbs module should be used.
  21. if (_bootstrap_use_path_breadcrumbs()) {
  22. return;
  23. }
  24. $breadcrumb = &$variables['breadcrumb'];
  25. // Optionally get rid of the homepage link.
  26. $show_breadcrumb_home = bootstrap_setting('breadcrumb_home');
  27. if (!$show_breadcrumb_home) {
  28. array_shift($breadcrumb);
  29. }
  30. if (bootstrap_setting('breadcrumb_title') && !empty($breadcrumb)) {
  31. $item = menu_get_item();
  32. $page_title = !empty($item['tab_parent']) ? check_plain($item['title']) : drupal_get_title();
  33. if (!empty($page_title)) {
  34. $breadcrumb[] = array(
  35. // If we are on a non-default tab, use the tab's title.
  36. 'data' => $page_title,
  37. 'class' => array('active'),
  38. );
  39. }
  40. }
  41. }