You are here

function text_resize_uninstall in Text Resize 6

Same name and namespace in other branches
  1. 7 text_resize.install \text_resize_uninstall()

Implementation of hook_uninstall().

File

./text_resize.install, line 11
This file handles uninstallation of Text Resize variables.

Code

function text_resize_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'text_resize_%'");
}