function imagecache_include_standard_actions in ImageCache Actions 6.2
Same name and namespace in other branches
- 6 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/
canvasactions.inc - Place the source image on the current background
File
- ./
utility.inc, line 196 - 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'];
}