function lazyloader_theme in Image Lazyloader 7.2
Implements hook_theme().
File
- ./
lazyloader.module, line 81 - Lazyloader Module
Code
function lazyloader_theme($existing, $type, $theme, $path) {
$info = array();
if (isset($existing['image']['variables'])) {
$info['lazyloader_image'] = array(
'variables' => $existing['image']['variables'],
'function' => 'theme_lazyloader_image',
);
}
return $info;
}