region.vars.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "region" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "region" theme hook.
  8. *
  9. * See template for list of available variables.
  10. *
  11. * @param array $variables
  12. * An associative array of variables, passed by reference.
  13. *
  14. * @see region.tpl.php
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_region(array &$variables) {
  19. global $theme;
  20. $region = $variables['region'];
  21. $classes = &$variables['classes_array'];
  22. // Content region.
  23. if ($region === 'content') {
  24. // @todo is this actually used properly?
  25. $variables['theme_hook_suggestions'][] = 'region__no_wrapper';
  26. }
  27. // Help region.
  28. elseif ($region === 'help' && !empty($variables['content'])) {
  29. $variables['content'] = _bootstrap_icon('question-sign') . $variables['content'];
  30. $classes[] = 'alert';
  31. $classes[] = 'alert-info';
  32. $classes[] = 'messages';
  33. $classes[] = 'info';
  34. }
  35. // Support for "well" classes in regions.
  36. static $wells;
  37. if (!isset($wells)) {
  38. foreach (system_region_list($theme) as $name => $title) {
  39. $wells[$name] = bootstrap_setting('region_well-' . $name);
  40. }
  41. }
  42. if (!empty($wells[$region])) {
  43. $classes[] = $wells[$region];
  44. }
  45. }