function advagg_bundler_uninstall in Advanced CSS/JS Aggregation 6
Same name and namespace in other branches
- 7 advagg_bundler/advagg_bundler.install \advagg_bundler_uninstall()
Implementation of hook_uninstall().
File
- advagg_bundler/
advagg_bundler.install, line 40 - Handles AdvAgg Bundler installation and upgrade tasks.
Code
function advagg_bundler_uninstall() {
// Remove variables.
variable_del('advagg_bundler_outdated');
variable_del('advagg_bundler_max_css');
variable_del('advagg_bundler_max_js');
variable_del('advagg_bundler_active');
drupal_uninstall_schema('advagg_bundler');
}