image.vars.php 697 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "image" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "image" 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_image()
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_image(array &$variables) {
  19. // Add image shape, if necessary.
  20. if ($shape = bootstrap_setting('image_shape')) {
  21. _bootstrap_add_class($shape, $variables);
  22. }
  23. // Add responsiveness, if necessary.
  24. if (bootstrap_setting('image_responsive')) {
  25. _bootstrap_add_class('img-responsive', $variables);
  26. }
  27. }