You are here

active_tags.install in Active Tags 7.2

Same filename and directory in other branches
  1. 6.2 active_tags.install
  2. 6 active_tags.install

Install & uninstall functions.

File

active_tags.install
View source
<?php

/**
 * @file
 *  Install & uninstall functions.
 */

/**
 * Implementation of hook_uninstall().
 */
function active_tags_uninstall() {

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

/**
 * Update from 6.x to 7.x.
 */

/*
function active_tags_update_7000() {

}
*/

Functions

Namesort descending Description
active_tags_uninstall Implementation of hook_uninstall().