You are here

function _auditfiles_not_in_database_batch_display_get_operations in Audit Files 7.4

Same name and namespace in other branches
  1. 7.3 auditfiles.notindatabase.inc \_auditfiles_not_in_database_batch_display_get_operations()

Configures the operations for the batch process.

Return value

array The operations to execute.

1 call to _auditfiles_not_in_database_batch_display_get_operations()
_auditfiles_not_in_database_batch_display_create_batch in ./auditfiles.notindatabase.inc
Prepares the definition for the page display batch.

File

./auditfiles.notindatabase.inc, line 341
Generates a report showing files on the server, but not in the database.

Code

function _auditfiles_not_in_database_batch_display_get_operations() {
  $date_format = variable_get('auditfiles_report_options_date_format', 'long');
  $operations = array();
  $file_ids = _auditfiles_not_in_database_get_file_list(drupal_realpath(file_default_scheme() . '://'), TRUE);

  // Set up the operations.
  foreach ($file_ids as $file_id) {
    $operations[] = array(
      '_auditfiles_not_in_database_batch_display_process_batch',
      array(
        $file_id,
        $date_format,
      ),
    );
  }
  return $operations;
}