locale_uninstall

Versions
5 – 7
locale_uninstall()

Implementation of hook_uninstall().

Code

modules/locale/locale.install, line 82

<?php
function locale_uninstall() {
  db_query('DROP TABLE {locales_meta}');
  db_query('DROP TABLE {locales_source}');
  db_query('DROP TABLE {locales_target}');
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.