html.vars.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "html" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "html" 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 html.tpl.php
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_html(array &$variables) {
  19. // Backport from Drupal 8 RDFa/HTML5 implementation.
  20. // @see https://www.drupal.org/node/1077566
  21. // @see https://www.drupal.org/node/1164926
  22. // Create a dedicated attributes array for the HTML element.
  23. // By default, core does not provide a way to target the HTML element.
  24. // The only arrays currently available technically belong to the BODY element.
  25. $variables['html_attributes_array'] = array(
  26. 'lang' => $variables['language']->language,
  27. 'dir' => $variables['language']->dir,
  28. );
  29. // Override existing RDF namespaces to use RDFa 1.1 namespace prefix bindings.
  30. if (function_exists('rdf_get_namespaces')) {
  31. $rdf = array('prefix' => array());
  32. foreach (rdf_get_namespaces() as $prefix => $uri) {
  33. $rdf['prefix'][] = $prefix . ': ' . $uri;
  34. }
  35. if (!$rdf['prefix']) {
  36. $rdf = array();
  37. }
  38. $variables['rdf_namespaces'] = drupal_attributes($rdf);
  39. }
  40. // Create a dedicated attributes array for the BODY element.
  41. if (!isset($variables['body_attributes_array'])) {
  42. $variables['body_attributes_array'] = array();
  43. }
  44. // Ensure there is at least a class array.
  45. if (!isset($variables['body_attributes_array']['class'])) {
  46. $variables['body_attributes_array']['class'] = array();
  47. }
  48. // Navbar position.
  49. switch (bootstrap_setting('navbar_position')) {
  50. case 'fixed-top':
  51. $variables['body_attributes_array']['class'][] = 'navbar-is-fixed-top';
  52. break;
  53. case 'fixed-bottom':
  54. $variables['body_attributes_array']['class'][] = 'navbar-is-fixed-bottom';
  55. break;
  56. case 'static-top':
  57. $variables['body_attributes_array']['class'][] = 'navbar-is-static-top';
  58. break;
  59. }
  60. }
  61. /**
  62. * Processes variables for the "html" theme hook.
  63. *
  64. * See template for list of available variables.
  65. *
  66. * **WARNING**: It is not recommended that this function be copied to a
  67. * sub-theme. There is rarely any need to process the same variables twice.
  68. *
  69. * If you need to add something to the "html_attributes_array" or
  70. * "body_attributes_array" arrays, you should do so in a hook_preprocess_html()
  71. * function since process functions will always run after all preprocess
  72. * functions have been executed.
  73. *
  74. * If there is a need to implement a hook_process_html() function in your
  75. * sub-theme (to process your own custom variables), ensure that it doesn't
  76. * add this base theme's logic and risk introducing breakage and performance
  77. * issues.
  78. *
  79. * @param array $variables
  80. * An associative array of variables, passed by reference.
  81. *
  82. * @see html.tpl.php
  83. *
  84. * @ingroup theme_process
  85. */
  86. function bootstrap_process_html(array &$variables) {
  87. // Merge in (not reference!) core's ambiguous and separate "attribute" and
  88. // "class" arrays. These arrays are meant for the BODY element, but it must
  89. // be done at the process level in case sub-themes wish to add classes to
  90. // core's non-standard arrays (which are for the BODY element only).
  91. // @see https://www.drupal.org/node/2868426
  92. $variables['body_attributes_array'] = drupal_array_merge_deep($variables['body_attributes_array'], $variables['attributes_array']);
  93. // Use this project's class helper (to eliminate any duplicate classes).
  94. _bootstrap_add_class($variables['classes_array'], $variables, 'body_attributes_array');
  95. // Finally, convert the arrays into proper attribute strings.
  96. $variables['html_attributes'] = drupal_attributes($variables['html_attributes_array']);
  97. $variables['body_attributes'] = drupal_attributes($variables['body_attributes_array']);
  98. }