You are here

function imagecache_include_standard_actions in ImageCache Actions 6

Same name and namespace in other branches
  1. 6.2 utility.inc \imagecache_include_standard_actions()

imagecache is conservative with its inclusion of inc files, but sometimes I need to use them - eg crop. This function finds and includes it if needed.

1 call to imagecache_include_standard_actions()
canvasactions_canvas2file_image in ./canvasactions.inc
Place the source image on the current background

File

./utility.inc, line 284
Utility form, conversion and rendering functions for image processes

Code

function imagecache_include_standard_actions() {
  $cropaction = imagecache_action_definition('imagecache_crop');
  include_once $cropaction['file'];
}