You are here

function getid3_uninstall in getID3() 7.2

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

Implements hook_uninstall().

File

./getid3.install, line 51
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');
}