You are here

function image_focus_imagecache_actions in Image Focus Crop 6

Implements hook_imagecache_actions().

File

./image_focus.module, line 10
Image Focus Crop module.

Code

function image_focus_imagecache_actions() {
  $actions = array(
    'image_focus_scale_and_crop' => array(
      'name' => 'Focus Scale and Crop',
      'description' => t('The improved version of ImageCache Scale and Crop action.'),
    ),
  );
  return $actions;
}