You are here

function mp3player_uninstall in MP3 Player 6

Same name and namespace in other branches
  1. 8 mp3player.install \mp3player_uninstall()
  2. 6.2 mp3player.install \mp3player_uninstall()
  3. 7.2 mp3player.install \mp3player_uninstall()

Implementation of hook_uninstall().

File

./mp3player.install, line 39
The install file for MP3 Player.

Code

function mp3player_uninstall() {
  drupal_uninstall_schema('mp3player');

  // Delete the variables we created.
  variable_del('mp3player_page_list');
  variable_del('mp3player_page_init_action');
}