You are here

function scald_uninstall in Scald: Media Management made easy 7

Same name and namespace in other branches
  1. 6 scald.install \scald_uninstall()

Implements hook_uninstall().

Removes the database tables and persistant variables managed through Drupal. Anything set in the Scald Admin Interface will be forgotten.

Uninstall the DB schema and clean up as much as is feasible.

File

./scald.install, line 269

Code

function scald_uninstall() {
  variable_del('scald_always_rebuild');
  variable_del('scald_config');
  variable_del('scald_providers');
  variable_del('scald_atom_defaults');
  variable_del('scald_context_fallbacks');
  variable_del('scald_actions_powers');
  variable_del('scald_actions_publisher');
  variable_del('scald_custom_contexts');
  variable_del('scald_author_vocabulary');
  variable_del('scald_tags_vocabulary');
  variable_del('scald_switch_feature_export');
}