function epsacrop_crop in EPSA Crop - Image Cropping 6
Same name and namespace in other branches
- 6.2 epsacrop.module \epsacrop_crop()
callback for handling public files imagecache requests.
1 string reference to 'epsacrop_crop'
- epsacrop_menu_alter in ./
epsacrop.module - Implementation of hook_menu_alter
File
- ./
epsacrop.module, line 434 - The main file of module
Code
function epsacrop_crop() {
$args = func_get_args();
$preset = check_plain(array_shift($args));
$path = implode('/', $args);
_epsacrop_crop($preset, $path);
}