function imagefield_focus_imagecache_actions in ImageField Focus 6
Implementation of hook_imagecache_actions().
File
- ./
imagefield_focus.module, line 171 - Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr
Code
function imagefield_focus_imagecache_actions() {
$actions = array(
'imagefield_focus_scale_and_crop' => array(
'name' => 'Focus Scale And Crop',
'description' => t('Scale and crop based on data provided by <em>ImageField Focus</em>.'),
'file' => 'imagefield_focus_imagecache_actions.inc',
),
'imagefield_focus_crop' => array(
'name' => 'Focus Crop',
'description' => t('Crop based on data provided by <em>ImageField Focus</em>.'),
'file' => 'imagefield_focus_imagecache_actions.inc',
),
);
return $actions;
}