Move advagg_mod_js_get_external_dns to advagg_mod_js_inline_resource_hints.

Fichier

advagg_mod/advagg_mod.install, line 41

Code

function advagg_mod_update_7202(&$sandbox) {
    $advagg_mod_js_inline_resource_hints = variable_get('advagg_mod_js_inline_resource_hints', NULL);
    $advagg_mod_js_get_external_dns = variable_get('advagg_mod_js_get_external_dns', NULL);
    if (is_null($advagg_mod_js_get_external_dns)) {
        return t('Nothing needed to happen.');
    }
    variable_del('advagg_mod_js_get_external_dns');
    if (!is_null($advagg_mod_js_inline_resource_hints) || empty($advagg_mod_js_inline_resource_hints)) {
        return t('Nothing needed to happen.');
    }
    variable_set('advagg_mod_js_inline_resource_hints', $advagg_mod_js_inline_resource_hints);
    return t('Variable has been moved.');
}