link.vars.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "link" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "link" 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 bootstrap_process_link()
  15. * @see theme_link()
  16. *
  17. * @ingroup theme_preprocess
  18. */
  19. function bootstrap_preprocess_link(array &$variables) {
  20. // Fill in missing defaults not provided by drupal_common_theme().
  21. $variables['options'] += array(
  22. 'attributes' => array(),
  23. 'html' => FALSE,
  24. );
  25. // Core is so backwards on this theme hook. It does not provide a proper
  26. // preprocess function or attributes array. Merge any passed attributes
  27. // (which take precedence over passed option attributes) into the options
  28. // attributes array.
  29. if (!empty($variables['attributes'])) {
  30. $variables['options']['attributes'] = drupal_array_merge_deep($variables['options']['attributes'], $variables['attributes']);
  31. }
  32. // Standardize "attributes" by referencing the attributes in options.
  33. $variables['attributes'] = &$variables['options']['attributes'];
  34. // Add the icon position class.
  35. if (!empty($variables['icon'])) {
  36. _bootstrap_add_class('icon-' . drupal_html_class($variables['icon_position'] === 'icon_only' ? 'only' : $variables['icon_position']), $variables);
  37. }
  38. // Remove any "href" attribute since it's manually added in theme_link().
  39. unset($variables['attributes']['href']);
  40. }
  41. /**
  42. * Processes variables for the "link" theme hook.
  43. *
  44. * See theme function for list of available variables.
  45. *
  46. * @param array $variables
  47. * An associative array of variables, passed by reference.
  48. *
  49. * @see bootstrap_preprocess_link()
  50. * @see theme_link()
  51. *
  52. * @ingroup theme_process
  53. */
  54. function bootstrap_process_link(array &$variables) {
  55. // Render #icon and trim it (so it doesn't add underlines in whitespace).
  56. if (!empty($variables['icon']) && ($icon = trim(render($variables['icon'])))) {
  57. // Sanitize text, if necessary.
  58. $variables['text'] = !empty($variables['options']['html']) ? $variables['text'] : check_plain($variables['text']);
  59. // Override the HTML option so icon is printed.
  60. $variables['options']['html'] = TRUE;
  61. // Hide the link text, if necessary.
  62. if ($variables['icon_position'] === 'icon_only') {
  63. $variables['text'] = '<span class="sr-only">' . $variables['text'] . '</span>';
  64. }
  65. if ($variables['icon_position'] === 'after') {
  66. $variables['text'] .= $icon;
  67. }
  68. else {
  69. $variables['text'] = $icon . $variables['text'];
  70. }
  71. }
  72. }