function imagecache_textactions_theme in ImageCache Actions 6
Same name and namespace in other branches
- 5.3 imagecache_textactions.module \imagecache_textactions_theme()
- 5.2 imagecache_textactions.module \imagecache_textactions_theme()
Need to register the theme functions we expect to use
File
- ./
imagecache_textactions.module, line 84
Code
function imagecache_textactions_theme() {
return array(
'textactions_text2canvas' => array(
'file' => 'textactions.inc',
'arguments' => array(
'element' => NULL,
),
),
'textactions_rendertext' => array(
'file' => 'textrender.inc',
'arguments' => array(
'element' => NULL,
),
),
'imagecacheactions_rgb_form' => array(
'file' => 'utility.inc',
'arguments' => array(
'form' => NULL,
),
),
'imagecacheactions_rgb' => array(
'file' => 'utility.inc',
'arguments' => array(
'rgb' => NULL,
),
),
);
}