You are here

function locale_uninstall in Drupal 5

Same name and namespace in other branches
  1. 8 core/modules/locale/locale.install \locale_uninstall()
  2. 6 modules/locale/locale.install \locale_uninstall()
  3. 7 modules/locale/locale.install \locale_uninstall()
  4. 9 core/modules/locale/locale.install \locale_uninstall()

Implementation of hook_uninstall().

File

modules/locale/locale.install, line 82

Code

function locale_uninstall() {
  db_query('DROP TABLE {locales_meta}');
  db_query('DROP TABLE {locales_source}');
  db_query('DROP TABLE {locales_target}');
}