views-view-table.vars.php 593 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "views_view_table" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "views_view_table" theme hook.
  8. *
  9. * See template for list of available variables.
  10. *
  11. * @param array $variables
  12. * An associative array of variables, passed by reference.
  13. *
  14. * @see views-view-table.tpl.php
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_views_view_table(array &$variables) {
  19. bootstrap_include('bootstrap', 'templates/system/table.vars.php');
  20. _bootstrap_table_add_classes($variables['classes_array'], $variables);
  21. }