function biblio_import_batch_finished in Bibliography Module 7.2
Same name and namespace in other branches
- 6.2 includes/biblio.import.export.inc \biblio_import_batch_finished()
- 6 biblio.import.export.inc \biblio_import_batch_finished()
- 7 includes/biblio.import.export.inc \biblio_import_batch_finished()
1 string reference to 'biblio_import_batch_finished'
- biblio_import_form_submit in includes/
biblio.import.export.inc - Implementation of hook_submit() for the biblio_import_form.
File
- includes/
biblio.import.export.inc, line 351 - Functions that are used to import and export biblio data.
Code
function biblio_import_batch_finished($success, $results, $operations) {
biblio_import_finalize($success, $results);
//clean up import cache...
db_delete('biblio_import_cache')
->condition('session_id', $results['session_id'])
->execute();
}