You are here

function retina_images_theme in Retina Images 8

Same name and namespace in other branches
  1. 7 retina_images.module \retina_images_theme()

Implements hook_theme().

File

./retina_images.module, line 24
This module provides an image effect to assist in outputing high resolution images.

Code

function retina_images_theme() {
  return array(
    'retina_images_image_crop_summary' => array(
      'variables' => array(
        'data' => NULL,
        'effect' => array(),
      ),
    ),
    'retina_images_image_resize_summary' => array(
      'variables' => array(
        'data' => NULL,
        'effect' => array(),
      ),
    ),
    'retina_images_image_scale_summary' => array(
      'variables' => array(
        'data' => NULL,
        'effect' => array(),
      ),
    ),
    'retina_images_image_style_preview' => array(
      'variables' => array(
        'style' => NULL,
      ),
    ),
  );
}