function imagezoom_theme in Image Zoom 7
Same name and namespace in other branches
- 8.3 imagezoom.module \imagezoom_theme()
- 8.2 imagezoom.module \imagezoom_theme()
- 7.2 imagezoom.module \imagezoom_theme()
Implements hook_theme().
File
- ./
imagezoom.module, line 153 - Provides an Image Zoom field formatter for Image fields.
Code
function imagezoom_theme() {
return array(
'imagezoom_image' => array(
'variables' => array(
'item' => NULL,
'display_style' => NULL,
'zoom_style' => NULL,
),
),
'imagezoom_image_multiple' => array(
'variables' => array(
'items' => NULL,
'display_style' => NULL,
'zoom_style' => NULL,
'thumb_style' => NULL,
),
),
'imagezoom_thumbs' => array(
'variables' => array(
'items' => NULL,
'class' => NULL,
),
),
);
}