You are here

function _auditfiles_merge_file_references_batch_display_create_batch in Audit Files 7.3

Prepares the definition for the page display batch.

Return value

array The batch definition.

1 call to _auditfiles_merge_file_references_batch_display_create_batch()
auditfiles_merge_file_references_form_submit in ./auditfiles.mergefilereferences.inc
Submit handler for the auditfiles_merge_file_references_form form.

File

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

Code

function _auditfiles_merge_file_references_batch_display_create_batch() {
  $batch = _auditfiles_merge_file_references_batch_set_common_values();
  $batch['title'] = t('Loading file audit data');
  $batch['operations'] = _auditfiles_merge_file_references_batch_display_get_operations();
  return $batch;
}