progress-bar.vars.php 554 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "progress_bar" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Processes variables for the "progress_bar" 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 progress-bar.tpl.php
  15. *
  16. * @ingroup theme_process
  17. */
  18. function bootstrap_process_progress_bar(array &$variables) {
  19. $variables['percent'] = check_plain($variables['percent']);
  20. $variables['message'] = filter_xss_admin($variables['message']);
  21. }