function imagecache_textactions_imagecache_actions in ImageCache Actions 5.2
Same name and namespace in other branches
- 5.3 imagecache_textactions.module \imagecache_textactions_imagecache_actions()
- 6 imagecache_textactions.module \imagecache_textactions_imagecache_actions()
Implementation of hook_imagecache_actions().
File
- ./
imagecache_textactions.module, line 15
Code
function imagecache_textactions_imagecache_actions() {
$actions = array(
'textactions_text2canvas' => array(
'name' => t('Text'),
'description' => t('Add static or dynamic (coded) text to an image.'),
'file' => 'textactions.inc',
),
);
return $actions;
}