function locale_uninstall in Drupal 5
Same name and namespace in other branches
- 8 core/modules/locale/locale.install \locale_uninstall()
- 6 modules/locale/locale.install \locale_uninstall()
- 7 modules/locale/locale.install \locale_uninstall()
- 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}');
}