You are here

function l10n_update_uninstall in Localization update 7.2

Same name and namespace in other branches
  1. 6 l10n_update.install \l10n_update_uninstall()
  2. 7 l10n_update.install \l10n_update_uninstall()

Implements hook_uninstall().

File

./l10n_update.install, line 179
Install file for l10n remote updates.

Code

function l10n_update_uninstall() {
  db_drop_field('locales_target', 'l10n_status');
  variable_del('l10n_update_check_disabled');
  variable_del('l10n_update_default_filename');
  variable_del('l10n_update_default_update_url');
  variable_del('l10n_update_import_enabled');
  variable_del('l10n_update_import_mode');
  variable_del('l10n_update_check_frequency');
  variable_del('l10n_update_last_check');
  variable_del('l10n_update_download_store');
  variable_del('l10n_update_check_mode');
}