You are here

function feed_import_base_uninstall in Feed Import 7.3

Same name and namespace in other branches
  1. 8 feed_import_base/feed_import_base.install \feed_import_base_uninstall()

Implements hook_uninstall().

File

feed_import_base/feed_import_base.install, line 146
Install/Uninstall code for feed_import

Code

function feed_import_base_uninstall() {
  $vars = array(
    'feed_import_time_between_imports',
    'feed_import_last_executed_import',
    'feed_import_delete_items_per_cron',
    'feed_import_import_running',
    'feed_import_use_cron',
    'feed_import_let_overlap',
    'feed_import_time_settings',
    'feed_import_interval_start',
    'feed_import_interval_stop',
    'feed_import_filters_dir',
    'feed_import_reports',
    'feed_import_invoke_hooks',
  );
  array_map('variable_del', $vars);
  db_drop_table('feed_import_hashes');
  db_drop_table('feed_import_settings');
}