You are here

stringoverrides.install in String Overrides 6

File

stringoverrides.install
View 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

Namesort descending Description
stringoverrides_uninstall Implementation of hook_uninstall().