You are here

function image_lazy_loader_theme in Image Lazy Loader 7

File

./image_lazy_loader.module, line 200
adds a formatter for images that makes them 'lazy load' using Javascript Image Asynchronous Loading

Code

function image_lazy_loader_theme() {
  return array(
    'image_lazy_loader_formatter' => array(
      'variables' => array(
        'item' => NULL,
        'path' => NULL,
        'image_lazy_loader_image_style' => NULL,
        'placeholder' => NULL,
        'image_lazy_loader_effect' => NULL,
        'image_lazy_loader_duration' => NULL,
        'image_lazy_loader_responsive' => NULL,
      ),
    ),
  );
}