page.vars.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "page" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "page" 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 page.tpl.php
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_page(array &$variables) {
  19. // Add information about the number of sidebars.
  20. if (!empty($variables['page']['sidebar_first']) && !empty($variables['page']['sidebar_second'])) {
  21. $variables['content_column_class'] = ' class="col-sm-6"';
  22. }
  23. elseif (!empty($variables['page']['sidebar_first']) || !empty($variables['page']['sidebar_second'])) {
  24. $variables['content_column_class'] = ' class="col-sm-9"';
  25. }
  26. else {
  27. $variables['content_column_class'] = ' class="col-sm-12"';
  28. }
  29. if (bootstrap_setting('fluid_container') == 1) {
  30. $variables['container_class'] = 'container-fluid';
  31. }
  32. else {
  33. $variables['container_class'] = 'container';
  34. }
  35. $i18n = module_exists('i18n_menu');
  36. // Primary nav.
  37. $variables['primary_nav'] = FALSE;
  38. if ($variables['main_menu']) {
  39. // Load the tree.
  40. $tree = menu_tree_page_data(variable_get('menu_main_links_source', 'main-menu'));
  41. // Localize the tree.
  42. if ($i18n) {
  43. $tree = i18n_menu_localize_tree($tree);
  44. }
  45. // Build links.
  46. $variables['primary_nav'] = menu_tree_output($tree);
  47. // Provide default theme wrapper function.
  48. $variables['primary_nav']['#theme_wrappers'] = array('menu_tree__primary');
  49. }
  50. // Secondary nav.
  51. $variables['secondary_nav'] = FALSE;
  52. if ($variables['secondary_menu']) {
  53. // Load the tree.
  54. $tree = menu_tree_page_data(variable_get('menu_secondary_links_source', 'user-menu'));
  55. // Localize the tree.
  56. if ($i18n) {
  57. $tree = i18n_menu_localize_tree($tree);
  58. }
  59. // Build links.
  60. $variables['secondary_nav'] = menu_tree_output($tree);
  61. // Provide default theme wrapper function.
  62. $variables['secondary_nav']['#theme_wrappers'] = array('menu_tree__secondary');
  63. }
  64. $variables['navbar_classes_array'] = array('navbar');
  65. if (bootstrap_setting('navbar_position') !== '') {
  66. $variables['navbar_classes_array'][] = 'navbar-' . bootstrap_setting('navbar_position');
  67. }
  68. elseif (bootstrap_setting('fluid_container') == 1) {
  69. $variables['navbar_classes_array'][] = 'container-fluid';
  70. }
  71. else {
  72. $variables['navbar_classes_array'][] = 'container';
  73. }
  74. if (bootstrap_setting('navbar_inverse')) {
  75. $variables['navbar_classes_array'][] = 'navbar-inverse';
  76. }
  77. else {
  78. $variables['navbar_classes_array'][] = 'navbar-default';
  79. }
  80. }
  81. /**
  82. * Processes variables for the "page" theme hook.
  83. *
  84. * See template for list of available variables.
  85. *
  86. * @param array $variables
  87. * An associative array of variables, passed by reference.
  88. *
  89. * @see page.tpl.php
  90. *
  91. * @ingroup theme_process
  92. */
  93. function bootstrap_process_page(array &$variables) {
  94. $variables['navbar_classes'] = implode(' ', $variables['navbar_classes_array']);
  95. }