function image_effects_text_theme in ImageCache Actions 7
Same name and namespace in other branches
- 8 image_effects_text/image_effects_text.module \image_effects_text_theme()
Implements hook_theme().
Registers theme functions for the effect summaries.
File
- image_effects_text/
image_effects_text.module, line 62 - Provide text manipulation effects for image styles.
Code
function image_effects_text_theme() {
return array(
'image_effects_text_summary' => array(
'variables' => array(
'data' => NULL,
),
'file' => 'image_effects_text.inc',
),
);
}