You are here

function email_verify_uninstall in Email Verify 7

Same name and namespace in other branches
  1. 7.2 email_verify.install \email_verify_uninstall()

Implements hook_uninstall().

Removes variables created by this module.

File

./email_verify.install, line 24
Install, update and uninstall related functions for the module.

Code

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