function media_library_get_cache in Media Library 6
Get the cached changes to a given task handler.
2 calls to media_library_get_cache()
- media_library_modal in ./
media_library.modal.inc - Main modal frame
- media_library_modal_add in ./
media_library.modal.inc - Second step in the modal dialog, for generating the multi-step form.
File
- ./
media_library.modal.inc, line 218 - Modal frame functions
Code
function media_library_get_cache($name) {
$cache = ctools_object_cache_get('media_library', $name);
return $cache;
}