function retina_images_image_scale_form in Retina Images 7
Form structure for the image scale form.
Note that this is not a complete form, it only contains the portion of the form for configuring the scale options. Therefore it does not not need to include metadata about the effect, nor a submit button.
Parameters
$data: The current configuration for this scale effect.
1 string reference to 'retina_images_image_scale_form'
- retina_images_image_effect_info_alter in ./
retina_images.module - Implements hook_image_effect_info_alter
File
- ./
retina_images.module, line 112 - This module provides an image effect to assist in outputing high resolution images.
Code
function retina_images_image_scale_form($data) {
$form = image_scale_form($data);
retina_images_form_helper($form, $data);
return $form;
}