You are here

function _auditfiles_managed_not_used_batch_set_common_values in Audit Files 7.4

Same name and namespace in other branches
  1. 7.3 auditfiles.managednotused.inc \_auditfiles_managed_not_used_batch_set_common_values()

Adds vaules to a batch definition that are common to all batches in the file.

Return value

array The beginning of the batch definition.

2 calls to _auditfiles_managed_not_used_batch_set_common_values()
_auditfiles_managed_not_used_batch_delete_create_batch in ./auditfiles.managednotused.inc
Creates the batch for deleting files from the file_managed table.
_auditfiles_managed_not_used_batch_display_create_batch in ./auditfiles.managednotused.inc
Prepares the definition for the page display batch.

File

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

Code

function _auditfiles_managed_not_used_batch_set_common_values() {
  return array(
    'error_message' => t('One or more errors were encountered processing the files.'),
    'file' => drupal_get_path('module', 'auditfiles') . '/auditfiles.managednotused.inc',
    'finished' => '_auditfiles_managed_not_used_batch_finish_batch',
    'progress_message' => t('Completed @current of @total operations.'),
  );
}