You are here

function htaccess_uninstall in Htaccess 7.2

Implements hook_uninstall(). Remove all variables. Table will be removed by Core.

File

./htaccess.install, line 98
Htaccess module install file.

Code

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