function imagecache_customactions_theme in ImageCache Actions 7
Same name and namespace in other branches
- 8 customactions/imagecache_customactions.module \imagecache_customactions_theme()
- 6.2 customactions/imagecache_customactions.module \imagecache_customactions_theme()
Implements hook_theme().
Registers theme functions for the effect summaries.
File
- customactions/
imagecache_customactions.module, line 54 - Allows advanced users to code their own PHP image manipulation routines as part of image style processing.
Code
function imagecache_customactions_theme() {
return array(
'imagecache_customactions_summary' => array(
'variables' => array(
'data' => NULL,
),
),
'imagecache_subroutine_summary' => array(
'variables' => array(
'data' => NULL,
),
),
);
}