You are here

function l10n_update_uninstall in Localization update 7

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

Implements hook_uninstall().

File

./l10n_update.install, line 167
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_check_frequency');
  variable_del('l10n_update_check_mode');
  variable_del('l10n_update_default_server');
  variable_del('l10n_update_default_update_url');
  variable_del('l10n_update_download_store');
  variable_del('l10n_update_import_mode');
  variable_del('l10n_update_rebuild_projects');
}