You are here

function biblio_import_batch_finished in Bibliography Module 7

Same name and namespace in other branches
  1. 6.2 includes/biblio.import.export.inc \biblio_import_batch_finished()
  2. 6 biblio.import.export.inc \biblio_import_batch_finished()
  3. 7.2 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 365
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();
}