You are here

function scald_file_uninstall in Scald File Provider 7

Implements hook_uninstall().

File

./scald_file.install, line 19
Scald Files Installation.

Code

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

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