flowplayer.install in Flowplayer API 7
Same filename and directory in other branches
Provides the installation and uninstallation features of the Flowplayer Drupal module.
File
flowplayer.installView 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
Name | Description |
---|---|
flowplayer_uninstall | Implementation of hook_uninstall(). |