function _auditfiles_used_not_managed_batch_finish_batch in Audit Files 7.4
Same name and namespace in other branches
- 7.3 auditfiles.usednotmanaged.inc \_auditfiles_used_not_managed_batch_finish_batch()
The function that is called when the batch is complete.
1 string reference to '_auditfiles_used_not_managed_batch_finish_batch'
- _auditfiles_used_not_managed_batch_set_common_values in ./
auditfiles.usednotmanaged.inc - Adds vaules to a batch definition that are common to all batches in the file.
File
- ./
auditfiles.usednotmanaged.inc, line 278 - Generates a report showing files in file_usage, but not in file_managed.
Code
function _auditfiles_used_not_managed_batch_finish_batch($success, $results, $operations) {
if ($success) {
if (!empty($results['files_to_display'])) {
// Save the gathered data for display.
variable_set('auditfiles_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),
)));
}
}