You are here

function scald_youtube_uninstall in Scald YouTube 7

Implements hook_uninstall().

File

./scald_youtube.install, line 18
Scald Youtube Installation.

Code

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

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