You are here

imagecache_actions.module in ImageCache Actions 6.2

Same filename and directory in other branches
  1. 8 imagecache_actions.module
  2. 7 imagecache_actions.module

Home for the most basic imagecache_action routines, for re-use

File

imagecache_actions.module
View source
<?php

/**
 * @file Home for the most basic imagecache_action routines, for re-use
 */

/**
 * Need to register the theme functions we expect to use
 */
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,
      ),
    ),
  );
}

Functions

Namesort descending Description
imagecache_actions_theme Need to register the theme functions we expect to use