You are here

function image_hotspots_image_default_styles in Image Hotspots 7.2

Implements hook_image_default_styles().

File

./image_hotspots.module, line 153
Main function of module.

Code

function image_hotspots_image_default_styles() {
  return array(
    IMAGE_HOTSPOTS_STYLE => array(
      'effects' => array(
        array(
          'name' => 'image_scale',
          'data' => array(
            'width' => 500,
            'height' => '',
            'upscale' => FALSE,
          ),
          'weight' => 0,
        ),
      ),
    ),
  );
}