You are here

strip_utf8mb4.install in Strip 4-byte UTF8 7

Install, update, and uninstall functions for the Strip 4-byte UTF8.

File

strip_utf8mb4.install
View source
<?php

/**
 * @file
 * Install, update, and uninstall functions for the Strip 4-byte UTF8.
 */

/**
 * Implements hook_uninstall().
 */
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');
}

Functions

Namesort descending Description
strip_utf8mb4_uninstall Implements hook_uninstall().