You are here

function _auditfiles_referenced_not_used_batch_add_process_batch in Audit Files 7.3

Same name and namespace in other branches
  1. 7.4 auditfiles.referencednotused.inc \_auditfiles_referenced_not_used_batch_add_process_batch()

The batch process for adding the file.

Parameters

int $reference_id: The ID of a file to add to the file_usage table.

array $context: Used by the Batch API to keep track of and pass data from one operation to the next.

1 string reference to '_auditfiles_referenced_not_used_batch_add_process_batch'
_auditfiles_referenced_not_used_batch_add_create_batch in ./auditfiles.referencednotused.inc
Creates the batch for adding files to the file_usage table.

File

./auditfiles.referencednotused.inc, line 595
Generates report showing files referenced by content, but not in file_usage.

Code

function _auditfiles_referenced_not_used_batch_add_process_batch($reference_id, array &$context) {

  // Process the current file.
  _auditfiles_referenced_not_used_batch_add_process_file($reference_id);

  // The contents of 'results' are available as $results in the 'finished'
  // function.
  $context['results'][] = $reference_id;

  // Set a progress message.
  $context['message'] = t('Processed reference ID %file_id.', array(
    '%file_id' => $reference_id,
  ));
}