You are here

function getid3_uninstall in getID3() 7

Same name and namespace in other branches
  1. 5 getid3.install \getid3_uninstall()
  2. 6 getid3.install \getid3_uninstall()
  3. 7.2 getid3.install \getid3_uninstall()

Implements hook_uninstall().

File

./getid3.install, line 64
Install, update and uninstall functions for the getid3 module.

Code

function getid3_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'getid3_%'");
  cache_clear_all('variables', 'cache');
}