Set data about a file.

Paramètres

$filename_md5: md5 of filename.

$data: data to store.

2 calls to advagg_set_file_data()
advagg_js_compress_test_compression dans advagg_js_compress/advagg_js_compress.module
Run various theme functions so the cache is primed.
advagg_js_compress_test_file dans advagg_js_compress/advagg_js_compress.module
Run various theme functions so the cache is primed.

Fichier

./advagg.module, line 1743

Code

function advagg_set_file_data($filename_md5, $data) {
    cache_set($filename_md5, $data, 'cache_advagg_files_data', CACHE_PERMANENT);
}