You are here

function imagecache_reflect_image_effect_info in ImageCache Reflect 7

Implements hook_image_effect_info().

File

./imagecache_reflect.module, line 10
Adds a reflection action for images.

Code

function imagecache_reflect_image_effect_info() {
  $effects = array();
  $effects['imagecache_reflect'] = array(
    'label' => t('Reflect'),
    'help' => t('Creates a reflection-like effect.'),
    'effect callback' => 'imagecache_reflect_image',
    'form callback' => 'imagecache_reflect_form',
    'summary theme' => 'imagecache_reflect_summary',
  );
  return $effects;
}