You are here

function active_tags_popular_uninstall in Active Tags 6.2

Same name and namespace in other branches
  1. 6 active_tags_popular.install \active_tags_popular_uninstall()

Implementation of hook_uninstall().

File

./active_tags_popular.install, line 22
Install & uninstall functions.

Code

function active_tags_popular_uninstall() {

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