block.vars.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "block" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "block" 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 block.tpl.php
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_block(array &$variables) {
  19. // Use a bare template for the page's main content.
  20. if ($variables['block_html_id'] == 'block-system-main') {
  21. $variables['theme_hook_suggestions'][] = 'block__no_wrapper';
  22. }
  23. $variables['title_attributes_array']['class'][] = 'block-title';
  24. }
  25. /**
  26. * Processes variables for the "block" theme hook.
  27. *
  28. * See template for list of available variables.
  29. *
  30. * @param array $variables
  31. * An associative array of variables, passed by reference.
  32. *
  33. * @see block.tpl.php
  34. *
  35. * @ingroup theme_process
  36. */
  37. function bootstrap_process_block(array &$variables) {
  38. // Drupal 7 should use a $title variable instead of $block->subject.
  39. // Don't override an existing "title" variable, some modules may already it.
  40. if (!isset($variables['title'])) {
  41. $variables['title'] = $variables['block']->subject;
  42. }
  43. $variables['title'] = filter_xss_admin($variables['title']);
  44. }