You are here

function _auditfiles_used_not_managed_batch_display_create_batch in Audit Files 7.4

Same name and namespace in other branches
  1. 7.3 auditfiles.usednotmanaged.inc \_auditfiles_used_not_managed_batch_display_create_batch()

Prepares the definition for the page display batch.

Return value

array The batch definition.

1 call to _auditfiles_used_not_managed_batch_display_create_batch()
auditfiles_used_not_managed_form_submit in ./auditfiles.usednotmanaged.inc
Submit handler for the auditfiles_used_not_managed_form form.

File

./auditfiles.usednotmanaged.inc, line 310
Generates a report showing files in file_usage, but not in file_managed.

Code

function _auditfiles_used_not_managed_batch_display_create_batch() {
  $batch = _auditfiles_used_not_managed_batch_set_common_values();
  $batch['title'] = t('Loading file audit data');
  $batch['operations'] = _auditfiles_used_not_managed_batch_display_get_operations();
  return $batch;
}