You are here

function advagg_css_compress_update_7202 in Advanced CSS/JS Aggregation 7.2

Remove unused variables from the variable table.

File

advagg_css_compress/advagg_css_compress.install, line 119
Handles AdvAgg CSS compress installation and upgrade tasks.

Code

function advagg_css_compress_update_7202(&$sandbox) {

  // Remove all old advagg css compress variables.
  db_delete('variable')
    ->condition('name', 'advagg_css_compressor_file_settings_%', 'LIKE')
    ->execute();
}