You are here

function advagg_sri_uninstall in Advanced CSS/JS Aggregation 7.2

Implements hook_uninstall().

File

advagg_sri/advagg_sri.install, line 34
Handles Advanced Aggregation installation and upgrade tasks.

Code

function advagg_sri_uninstall() {

  // Remove variables.
  db_delete('variable')
    ->condition('name', 'advagg_sri%', 'LIKE')
    ->execute();
}