You are here

function l10n_update_uninstall in Localization update 6

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

Implementation of hook_uninstall().

File

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

Code

function l10n_update_uninstall() {
  $ret = array();
  drupal_uninstall_schema('l10n_update');
  db_drop_field($ret, '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');
  return $ret;
}