You are here

function widgets_uninstall in Widgets 6

Implementation of hook_uninstall().

File

./widgets.install, line 110
Install, update and uninstall functions for the Widgets module.

Code

function widgets_uninstall() {

  // Drop tables.
  drupal_uninstall_schema('widgets');

  // Delete module variables.
  db_query("DELETE FROM {variable} WHERE name LIKE 'widgets_%'");
}