You are here

flowplayer.install in Flowplayer API 6

Same filename and directory in other branches
  1. 5 flowplayer.install
  2. 7.2 flowplayer.install
  3. 7 flowplayer.install

Provides the installation and uninstallation features of the Flowplayer Drupal module.

File

flowplayer.install
View source
<?php

/**
 * @file
 * Provides the installation and uninstallation features of the Flowplayer Drupal module.
 */

/**
 * Implementation of hook_uninstall().
 */
function flowplayer_uninstall() {

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

Functions

Namesort descending Description
flowplayer_uninstall Implementation of hook_uninstall().