tagadelic.install in Tagadelic 5
Same filename and directory in other branches
File
tagadelic.installView source
<?php
/**
* Implementaton of hook_install
*/
function tagadelic_install() {
// nothing to do
}
/**
* Implementaton of hook_uninstall
*/
function tagadelic_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'tagadelic_%'");
db_query("DELETE FROM {blocks} WHERE module = 'tagadelic'");
db_query("DELETE FROM {system} WHERE name = 'tagadelic'");
}
Functions
Name | Description |
---|---|
tagadelic_install | Implementaton of hook_install |
tagadelic_uninstall | Implementaton of hook_uninstall |