function feed_import_uninstall in Feed Import 7.2
Same name and namespace in other branches
- 7 feed_import.install \feed_import_uninstall()
Implements hook_uninstall().
File
- ./
feed_import.install, line 129 - Install/Uninstall code for feed_import
Code
function feed_import_uninstall() {
$vars = array(
'feed_import_field_param_name',
'feed_import_insert_hashes_chunk',
'feed_import_hash_property',
'feed_import_update_ids_chunk',
'feed_import_last_executed_import',
'feed_import_time_between_imports',
'feed_import_last_imported_feed',
'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',
);
array_map('variable_del', $vars);
db_drop_table('feed_import_hashes');
db_drop_table('feed_import_settings');
}