You are here

function active_tags_uninstall in Active Tags 6

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

Implementation of hook_uninstall().

File

./active_tags.install, line 22
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);
}