You are here

function imagecache_textactions_imagecache_actions in ImageCache Actions 5.2

Same name and namespace in other branches
  1. 5.3 imagecache_textactions.module \imagecache_textactions_imagecache_actions()
  2. 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;
}