You are here

function advagg_update_6106 in Advanced CSS/JS Aggregation 6

Update 6106 - Clear file cache.

File

./advagg.install, line 846
Handles Advanced Aggregation installation and upgrade tasks.

Code

function advagg_update_6106() {
  $ret = array();
  cache_clear_all('*', 'cache_advagg_files_data', TRUE);
  $ret[] = array(
    'success' => TRUE,
    'query' => 'advagg files_data cache flushed.',
  );
  return $ret;
}