You are here

function statspro_uninstall in Statistics Pro 6.2

Same name and namespace in other branches
  1. 6 statspro.install \statspro_uninstall()

Implementation of hook_uninstall().

File

./statspro.install, line 23
Install file for statistics pro module

Code

function statspro_uninstall() {
  drupal_uninstall_schema('statspro');
  db_query("DELETE FROM {variable} WHERE name LIKE 'statspro_%%'");
}