You are here

function imagecache_coloractions_theme in ImageCache Actions 6

Same name and namespace in other branches
  1. 8 coloractions/imagecache_coloractions.module \imagecache_coloractions_theme()
  2. 6.2 coloractions/imagecache_coloractions.module \imagecache_coloractions_theme()
  3. 7 coloractions/imagecache_coloractions.module \imagecache_coloractions_theme()

File

./imagecache_coloractions.module, line 55
Additional actions for imagecache processing.

Code

function imagecache_coloractions_theme() {
  return array(
    'imagecache_colorshift' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'imagecache_alpha' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'imagecache_brightness' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'imagecache_convert' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}