You are here

function strip_utf8mb4_uninstall in Strip 4-byte UTF8 7

Implements hook_uninstall().

File

./strip_utf8mb4.install, line 11
Install, update, and uninstall functions for the Strip 4-byte UTF8.

Code

function strip_utf8mb4_uninstall() {

  // Delete all String utf8mb4's variables.
  variable_del('strip_utf8mb4_for_text_field_widget_types');
  variable_del('strip_utf8mb4_replace_string');

  // Clear all cache for the bootstrap.
  cache_clear_all('variables', 'cache_bootstrap');
}