active_tags.install in Active Tags 7.2
Same filename and directory in other branches
Install & uninstall functions.
File
active_tags.installView 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
Name![]() |
Description |
---|---|
active_tags_uninstall | Implementation of hook_uninstall(). |