page.vars.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * Pre-processes variables for the "page" theme hook.
  4. *
  5. * See template for list of available variables.
  6. *
  7. * @see page.tpl.php
  8. *
  9. * @ingroup theme_preprocess
  10. */
  11. function hardwood_preprocess_page(&$variables) {
  12. // Primary nav.
  13. $variables['primary_nav'] = FALSE;
  14. if (!empty($variables['main_menu'])) {
  15. // Build links.
  16. $variables['primary_nav'] = menu_tree(variable_get('menu_main_links_source', 'main-menu'));
  17. // Provide default theme wrapper function.
  18. $variables['primary_nav']['#theme_wrappers'] = ['menu_tree__primary'];
  19. }
  20. // Secondary nav.
  21. $variables['secondary_nav'] = FALSE;
  22. if (!empty($variables['secondary_menu'])) {
  23. // Build links.
  24. $variables['secondary_nav'] = menu_tree(variable_get('menu_secondary_links_source', 'user-menu'));
  25. // Provide default theme wrapper function.
  26. $variables['secondary_nav']['#theme_wrappers'] = ['menu_tree__secondary'];
  27. }
  28. // Manage display of cards
  29. $cards = variable_get('hardwood_page_cards', FALSE);
  30. $variables['hardwood_set_page_card'] = TRUE;
  31. if ($cards) {
  32. if (isset($variables['node'])) {
  33. if (is_array($cards) && isset($cards[$variables['node']->nid])) {
  34. $variables['hardwood_set_page_card'] = FALSE;
  35. }
  36. }
  37. }
  38. // Add help content
  39. hardwood_add_help_variables($variables);
  40. // Disable sticky header
  41. drupal_add_js('Drupal.behaviors.tableHeader = function(){};', [
  42. 'type' => 'inline',
  43. ]);
  44. // Disable tripal ds
  45. drupal_add_js('Drupal.behaviors.tripal_ds = function(){};', [
  46. 'type' => 'inline',
  47. ]);
  48. }