You are here

function wysiwyg_spellcheck_uninstall in Wysiwyg SpellCheck 7

Same name and namespace in other branches
  1. 6 wysiwyg_spellcheck.install \wysiwyg_spellcheck_uninstall()

Implements hook_uninstall().

File

./wysiwyg_spellcheck.install, line 11
WYSIWYG Spellcheck module install file.

Code

function wysiwyg_spellcheck_uninstall() {
  db_delete('variable')
    ->condition('name', 'wysiwyg_spellcheck_%', 'LIKE')
    ->execute();
}