You are here

function gathercontent_uninstall in GatherContent 7.3

Same name and namespace in other branches
  1. 8 gathercontent.install \gathercontent_uninstall()
  2. 7 gathercontent.install \gathercontent_uninstall()
  3. 7.2 gathercontent.install \gathercontent_uninstall()

Implements hook_uninstall().

File

./gathercontent.install, line 89

Code

function gathercontent_uninstall() {
  variable_del('gathercontent_username');
  variable_del('gathercontent_api_key');
  variable_del('gathercontent_account');
  variable_del('gathercontent_node_update_method');
  db_drop_field('node', 'gathercontent_mapping_id');
  db_drop_field('node', 'gathercontent_id');
  db_drop_field('node', 'gathercontent_import_status');
  db_drop_field('file_managed', 'gathercontent_id');
}