You are here

function imagezoom_theme in Image Zoom 7

Same name and namespace in other branches
  1. 8.3 imagezoom.module \imagezoom_theme()
  2. 8.2 imagezoom.module \imagezoom_theme()
  3. 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,
      ),
    ),
  );
}