You are here

text_resize.install in Text Resize 6

Same filename and directory in other branches
  1. 7 text_resize.install

This file handles uninstallation of Text Resize variables.

File

text_resize.install
View source
<?php

/**
 * @file
 * This file handles uninstallation of Text Resize variables.
 */

/**
 * Implementation of hook_uninstall().
 */
function text_resize_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'text_resize_%'");
}

Functions

Namesort descending Description
text_resize_uninstall Implementation of hook_uninstall().