You are here

function imagecache_actions_theme in ImageCache Actions 6.2

Same name and namespace in other branches
  1. 8 imagecache_actions.module \imagecache_actions_theme()
  2. 7 imagecache_actions.module \imagecache_actions_theme()

Need to register the theme functions we expect to use

File

./imagecache_actions.module, line 10
Home for the most basic imagecache_action routines, for re-use

Code

function imagecache_actions_theme() {
  return array(
    'imagecacheactions_rgb_form' => array(
      'file' => 'utility-color.inc',
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'imagecacheactions_rgb' => array(
      'file' => 'utility-color.inc',
      'arguments' => array(
        'rgb' => NULL,
      ),
    ),
  );
}