Set data about a file.
Parameters
$filename_md5: md5 of filename.
$data: data to store.
2 calls to advagg_set_file_data()
- advagg_js_compress_test_compression in advagg_js_compress/
advagg_js_compress.module - Run various theme functions so the cache is primed.
- advagg_js_compress_test_file in advagg_js_compress/
advagg_js_compress.module - Run various theme functions so the cache is primed.
File
-
./
advagg.module, line 1743
Code
function advagg_set_file_data($filename_md5, $data) {
cache_set($filename_md5, $data, 'cache_advagg_files_data', CACHE_PERMANENT);
}