You are here

function elevatezoomplus_preprocess_blazy in ElevateZoom Plus 8

Same name and namespace in other branches
  1. 7 elevatezoomplus.module \elevatezoomplus_preprocess_blazy()

Overrides variables for theme_blazy().

File

./elevatezoomplus.module, line 134
Provides ElevateZoomPlus integration.

Code

function elevatezoomplus_preprocess_blazy(&$variables) {
  if (elevatezoomplus()
    ->isApplicable($variables['settings']) && !empty($variables['url'])) {
    elevatezoomplus()
      ->preprocessBlazy($variables);
  }
}