function sm2_audio_uninstall in SoundManager2 6.2
Implementation of hook_uninstall().
File
- sm2_audio/
sm2_audio.install, line 33 - Implementation of hook_install().
Code
function sm2_audio_uninstall() {
// drupal_load('module', 'content');
// content_notify('uninstall', 'sm2_audio');
variable_del('sm2_audio_waveform');
variable_del('sm2_audio_eq');
variable_del('sm2_audio_amplifier');
//variable_del('sm2_audio_circle_diameter');
//variable_del('sm2_audio_waveform_thickness');
//variable_del('sm2_audio_wave_downsample');
//variable_del('sm2_audio_eq_thickness');
//variable_del('sm2_audio_eq_downsample');
//variable_del('sm2_audio_wf_position');
//variable_del('sm2_audio_eq_position');
//variable_del('sm2_audio_waveform_color');
//variable_del('sm2_audio_eq_color');
//variable_del('sm2_audio_loaded_color');
//variable_del('sm2_audio_progress_color');
//variable_del('sm2_audio_background_color');
}