You are here

function retina_images_image_resize_form in Retina Images 7

Form structure for the image resize form.

Note that this is not a complete form, it only contains the portion of the form for configuring the resize options. Therefore it does not not need to include metadata about the effect, nor a submit button.

Parameters

$data: The current configuration for this resize effect.

1 string reference to 'retina_images_image_resize_form'
retina_images_image_effect_info_alter in ./retina_images.module
Implements hook_image_effect_info_alter

File

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

Code

function retina_images_image_resize_form($data) {
  $form = image_resize_form($data);
  retina_images_form_helper($form, $data);
  return $form;
}