You are here

function _auditfiles_merge_file_references_batch_display_get_operations in Audit Files 7.3

Configures the operations for the batch process.

Return value

array The operations to execute.

1 call to _auditfiles_merge_file_references_batch_display_get_operations()
_auditfiles_merge_file_references_batch_display_create_batch in ./auditfiles.mergefilereferences.inc
Prepares the definition for the page display batch.

File

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

Code

function _auditfiles_merge_file_references_batch_display_get_operations() {
  $operations = array();
  $operations[] = array(
    '_auditfiles_merge_file_references_batch_display_get_files',
    array(
      variable_get('auditfiles_merge_file_references_show_single_file_names', 0),
    ),
  );
  $operations[] = array(
    '_auditfiles_merge_file_references_batch_display_process_files',
    array(
      variable_get('auditfiles_report_options_date_format', 'long'),
    ),
  );
  return $operations;
}