table.vars.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "table" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "table" 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_table()
  15. * @see theme_table()
  16. *
  17. * @ingroup theme_preprocess
  18. */
  19. function bootstrap_preprocess_table(array &$variables) {
  20. // Prepare classes array if necessary.
  21. if (!isset($variables['attributes']['class'])) {
  22. $variables['attributes']['class'] = array();
  23. }
  24. // Convert classes to an array.
  25. elseif (isset($variables['attributes']['class']) && is_string($variables['attributes']['class'])) {
  26. $variables['attributes']['class'] = explode(' ', $variables['attributes']['class']);
  27. }
  28. // Add the necessary classes to the table.
  29. _bootstrap_table_add_classes($variables['attributes']['class'], $variables);
  30. }
  31. /**
  32. * Helper function for adding the necessary classes to a table.
  33. *
  34. * @param array $classes
  35. * The array of classes, passed by reference.
  36. * @param array $variables
  37. * The variables of the theme hook, passed by reference.
  38. */
  39. function _bootstrap_table_add_classes(array &$classes, array &$variables) {
  40. $context = $variables['context'];
  41. // Generic table class for all tables.
  42. $classes[] = 'table';
  43. // Bordered table.
  44. if (!empty($context['bordered']) || (!isset($context['bordered']) && bootstrap_setting('table_bordered'))) {
  45. $classes[] = 'table-bordered';
  46. }
  47. // Condensed table.
  48. if (!empty($context['condensed']) || (!isset($context['condensed']) && bootstrap_setting('table_condensed'))) {
  49. $classes[] = 'table-condensed';
  50. }
  51. // Hover rows.
  52. if (!empty($context['hover']) || (!isset($context['hover']) && bootstrap_setting('table_hover'))) {
  53. $classes[] = 'table-hover';
  54. }
  55. // Striped rows.
  56. if (!empty($context['striped']) || (!isset($context['striped']) && bootstrap_setting('table_striped'))) {
  57. $classes[] = 'table-striped';
  58. }
  59. // Responsive table.
  60. $responsive = (int) (isset($context['responsive']) ? $context['responsive'] : bootstrap_setting('table_responsive', NULL, 'bootstrap', -1));
  61. $variables['responsive'] = $responsive === -1 ? !path_is_admin(current_path()) : !!$responsive;
  62. }