You are here

function imagecache_customactions_theme in ImageCache Actions 6.2

Same name and namespace in other branches
  1. 8 customactions/imagecache_customactions.module \imagecache_customactions_theme()
  2. 7 customactions/imagecache_customactions.module \imagecache_customactions_theme()

Implementation of theme_hook() for imagecache_customactions.module

File

customactions/imagecache_customactions.module, line 67
Allow advanced users to code their own PHP image manipulation routines as part of imagecache processing.

Code

function imagecache_customactions_theme() {
  return array(
    'imagecache_subroutine' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
  );
}