links.vars.php 941 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "links" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "links" theme hook.
  8. *
  9. * See theme function for list of available variables.
  10. *
  11. * @param array $variables
  12. * An associative array of variables, passed by reference.
  13. *
  14. * @see theme_links()
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_links(array &$variables) {
  19. if (isset($variables['attributes']) && isset($variables['attributes']['class'])) {
  20. $string = is_string($variables['attributes']['class']);
  21. if ($string) {
  22. $variables['attributes']['class'] = explode(' ', $variables['attributes']['class']);
  23. }
  24. if ($key = array_search('inline', $variables['attributes']['class'])) {
  25. $variables['attributes']['class'][$key] = 'list-inline';
  26. }
  27. if ($string) {
  28. $variables['attributes']['class'] = implode(' ', $variables['attributes']['class']);
  29. }
  30. }
  31. }