function retina_images_theme in Retina Images 7
Same name and namespace in other branches
- 8 retina_images.module \retina_images_theme()
Implements hook_theme().
File
- ./
retina_images.module, line 36 - 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,
),
),
'retina_images_image_resize_summary' => array(
'variables' => array(
'data' => NULL,
),
),
'retina_images_image_scale_summary' => array(
'variables' => array(
'data' => NULL,
),
),
'retina_images_style_preview' => array(
'variables' => array(
'style' => NULL,
),
),
);
}