function imagezoomer_theme in Image Zoomer 7
Implements hook_theme().
File
- ./
imagezoomer.module, line 346 - Integrate Powerzoomer / Featuredzoom jquery plugins to Drupal 7
Code
function imagezoomer_theme($existing, $type, $theme, $path) {
return array(
'imagezoomer_power_image' => array(
'variables' => array(
'file' => NULL,
'image_style_display' => NULL,
'image_style_zooming' => NULL,
'imagezoomer_power_options' => array(),
),
),
'imagezoomer_featured_image' => array(
'variables' => array(
'file' => NULL,
'image_style_display' => NULL,
'image_style_zooming' => NULL,
'imagezoomer_featured_options' => array(),
),
),
);
}