You are here

tagadelic.install in Tagadelic 5

Same filename and directory in other branches
  1. 6 tagadelic.install
  2. 7.2 tagadelic.install
  3. 7 tagadelic.install

File

tagadelic.install
View 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

Namesort descending Description
tagadelic_install Implementaton of hook_install
tagadelic_uninstall Implementaton of hook_uninstall