You are here

function flowplayer_uninstall in Flowplayer API 5

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

Implementation of hook_uninstall().

File

./flowplayer.install, line 11
Provides the installation and uninstallation features of the Flowplayer Drupal module.

Code

function flowplayer_uninstall() {

  // Remove any saved variables.
  db_query("DELETE FROM {variable} WHERE name LIKE 'flowplayer_%'");
  cache_clear_all('variables', 'cache');
}