You are here

function swftools_uninstall in SWF Tools 6.3

Same name and namespace in other branches
  1. 5 swftools.install \swftools_uninstall()
  2. 6 swftools.install \swftools_uninstall()
  3. 6.2 swftools.install \swftools_uninstall()

Implementation of hook_uninstall().

File

./swftools.install, line 11
Install, update and uninstall functions for the SWF Tools module.

Code

function swftools_uninstall() {
  db_query("DELETE from {variable} WHERE name LIKE 'swftools%'");
  drupal_uninstall_schema('swftools');
}