image-srcset.vars.php 582 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for "image_srcset" theme hook [pre]process functions.
  5. */
  6. /**
  7. * Pre-processes variables for the "image_srcset" 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_srcset()
  15. *
  16. * @ingroup theme_preprocess
  17. */
  18. function bootstrap_preprocess_image_srcset(array &$variables) {
  19. // Add image shape, if necessary.
  20. if ($shape = bootstrap_setting('image_shape')) {
  21. $variables['attributes']['class'][] = $shape;
  22. }
  23. }