You are here

function blazy_photoswipe_blazy_alter in Blazy PhotoSwipe 7

Implements hook_blazy_alter().

File

./blazy_photoswipe.module, line 32
Provides a simple Blazy PhotoSwipe integration.

Code

function blazy_photoswipe_blazy_alter(array &$image, $settings = []) {
  if (!empty($settings['media_switch']) && $settings['media_switch'] == 'photoswipe') {
    $image['#pre_render'][] = 'blazy_photoswipe_pre_render';
  }
}