You are here

function scald_audio_uninstall in Scald: Media Management made easy 7

Implements hook_uninstall().

File

modules/providers/scald_audio/scald_audio.install, line 18
Scald Images Installation

Code

function scald_audio_uninstall() {
  drupal_load('module', 'scald');

  // If Scald is disabled, its classes are not autoloaded.
  module_load_include('inc', 'scald', 'includes/ScaldAtomController');
  ScaldAtomController::removeType('audio');
}