function imagefield_focus_theme in ImageField Focus 6
Same name and namespace in other branches
- 7 imagefield_focus.effects.inc \imagefield_focus_theme()
Implementation of hook_theme().
File
- ./
imagefield_focus.module, line 193 - Written by Henri MEDOT <henri.medot[AT]absyx[DOT]fr> http://www.absyx.fr
Code
function imagefield_focus_theme() {
$theme = array(
'imagefield_focus_scale_and_crop' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'imagefield_focus_imagecache_actions.inc',
),
'imagefield_focus_crop' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'imagefield_focus_imagecache_actions.inc',
),
);
return $theme;
}