stringoverrides.install in String Overrides 6
Same filename and directory in other branches
File
stringoverrides.installView source
<?php
/**
* Implementation of hook_uninstall().
*/
function stringoverrides_uninstall() {
// Remove all stored string replacements.
db_query("DELETE FROM {variable} WHERE name LIKE 'locale_custom_strings_%'");
db_query("DELETE FROM {variable} WHERE name LIKE 'locale_custom_disabled_strings_%'");
}Functions
|
Name |
Description |
|---|---|
| stringoverrides_uninstall | Implementation of hook_uninstall(). |