You are here

function cckformsettings_uninstall in Node and Comments Form Settings 6

Same name and namespace in other branches
  1. 6.3 cckformsettings/cckformsettings.install \cckformsettings_uninstall()
  2. 6.2 cckformsettings/cckformsettings.install \cckformsettings_uninstall()

Implementation of hook_uninstall(). Remove the variables this module created.

File

./cckformsettings.install, line 15

Code

function cckformsettings_uninstall() {

  // remove all variables we created
  $variables = db_query("SELECT name FROM {variable} WHERE name LIKE 'cckformsettings%%'");
  while ($variable = db_fetch_object($variables)) {
    variable_del($variable->name);
  }
  update_sql("DELETE FROM {system} WHERE name like '%cckformsettings'");
}