You are here

function imagecache_textactions_theme in ImageCache Actions 5.2

Same name and namespace in other branches
  1. 5.3 imagecache_textactions.module \imagecache_textactions_theme()
  2. 6 imagecache_textactions.module \imagecache_textactions_theme()

Need to register the theme functions we expect to use

File

./imagecache_textactions.module, line 44

Code

function imagecache_textactions_theme() {
  return array(
    'canvasactions_rgb_form' => array(
      'file' => 'utility.inc',
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'canvasactions_rgb' => array(
      'file' => 'utility.inc',
      'arguments' => array(
        'rgb' => NULL,
      ),
    ),
  );
}