You are here

function _auditfiles_merge_file_references_batch_finish_batch in Audit Files 7.3

The function that is called when the batch is complete.

1 string reference to '_auditfiles_merge_file_references_batch_finish_batch'
_auditfiles_merge_file_references_batch_set_common_values in ./auditfiles.mergefilereferences.inc
Adds values to a batch definition that are common to all batches in the file.

File

./auditfiles.mergefilereferences.inc, line 274
Generates a report showing & allowing for merging potential duplicate files.

Code

function _auditfiles_merge_file_references_batch_finish_batch($success, $results, $operations) {
  if ($success) {
    if (!empty($results['files_to_display'])) {

      // Save the gathered data for display.
      variable_set('auditfiles_merge_file_references_files_to_display', $results['files_to_display']);
    }
  }
  else {

    // An error occurred.
    // $operations contains the operations that remained unprocessed.
    $error_operation = reset($operations);
    drupal_set_message(t('An error occurred while processing @operation with arguments : @args', array(
      '@operation' => $error_operation[0],
      '@args' => print_r($error_operation[0], TRUE),
    )));
  }
}