menu-local-tasks.func.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_menu_local_tasks().
  5. */
  6. /**
  7. * Returns HTML for primary and secondary local tasks.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - primary: (optional) An array of local tasks (tabs).
  12. * - secondary: (optional) An array of local tasks (tabs).
  13. *
  14. * @return string
  15. * The constructed HTML.
  16. *
  17. * @see theme_menu_local_tasks()
  18. * @see menu_local_tasks()
  19. *
  20. * @ingroup theme_functions
  21. */
  22. function bootstrap_menu_local_tasks(array &$variables) {
  23. $output = '';
  24. if (!empty($variables['primary'])) {
  25. $variables['primary']['#prefix'] = '<h2 class="element-invisible">' . t('Primary tabs') . '</h2>';
  26. $variables['primary']['#prefix'] .= '<ul class="tabs--primary nav nav-tabs">';
  27. $variables['primary']['#suffix'] = '</ul>';
  28. $output .= drupal_render($variables['primary']);
  29. }
  30. if (!empty($variables['secondary'])) {
  31. $variables['secondary']['#prefix'] = '<h2 class="element-invisible">' . t('Secondary tabs') . '</h2>';
  32. $variables['secondary']['#prefix'] .= '<ul class="tabs--secondary pagination pagination-sm">';
  33. $variables['secondary']['#suffix'] = '</ul>';
  34. $output .= drupal_render($variables['secondary']);
  35. }
  36. return $output;
  37. }