You are here

function soundmanager2_uninstall in SoundManager2 6

Same name and namespace in other branches
  1. 6.2 soundmanager2.install \soundmanager2_uninstall()
  2. 7.2 soundmanager2.install \soundmanager2_uninstall()

Implementation of hook_uninstall().

File

./soundmanager2.install, line 18
Implementation of hook_install().

Code

function soundmanager2_uninstall() {
  drupal_load('module', 'content');
  content_notify('uninstall', 'soundmanager2');
  variable_del('sm2-debug-mode');
  variable_del('sm2-path');
}