You are here

function advagg_bundler_update_7201 in Advanced CSS/JS Aggregation 7.2

Remove the advagg_bundler_info variable if set.

File

advagg_bundler/advagg_bundler.install, line 24
Handles Advanced Aggregation installation and upgrade tasks.

Code

function advagg_bundler_update_7201() {
  $advagg_bundler_info = variable_get('advagg_bundler_info');
  if (!empty($advagg_bundler_info)) {
    variable_del('advagg_bundler_info');
    return t('Removed the advagg_bundler_info variable.');
  }
  else {
    return t('Nothing needed to happen.');
  }
}