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