You are here

function imagecache_cache in ImageCache 6.2

Same name and namespace in other branches
  1. 5.2 imagecache.module \imagecache_cache()
  2. 5 imagecache.module \imagecache_cache()

callback for handling public files imagecache requests.

1 string reference to 'imagecache_cache'
imagecache_menu in ./imagecache.module
Implementation of hook_menu().

File

./imagecache.module, line 401
Dynamic image resizer and image cacher.

Code

function imagecache_cache() {
  $args = func_get_args();
  $preset = check_plain(array_shift($args));
  $path = implode('/', $args);
  _imagecache_cache($preset, $path);
}