locale_uninstall
- Versions
- 5 – 7
locale_uninstall()
Implementation of hook_uninstall().
Code
modules/locale/locale.install, line 210
<?php
function locale_uninstall() {
// Delete all JavaScript translation files
$files = db_query('SELECT javascript FROM {languages}');
while ($file = db_fetch_object($files)) {
if (!empty($file)) {
file_delete(file_create_path($file->javascript));
}
}
// Remove tables.
drupal_uninstall_schema('locale');
}
?>Login or register to post comments 