You are here

function getid3_uninstall in getID3() 5

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

Implementation of hook_uninstall()

File

./getid3.install, line 28

Code

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