You are here

function active_tags_uninstall in Active Tags 7.2

Same name and namespace in other branches
  1. 6.2 active_tags.install \active_tags_uninstall()
  2. 6 active_tags.install \active_tags_uninstall()

Implementation of hook_uninstall().

File

./active_tags.install, line 11
Install & uninstall functions.

Code

function active_tags_uninstall() {

  // Delete settings from varible table.
  $sql = "DELETE FROM {variable}\n          WHERE name LIKE 'active_tags%'";
  db_query($sql);
}