function _auditfiles_not_in_database_batch_set_common_values in Audit Files 7.3
Same name and namespace in other branches
- 7.4 auditfiles.notindatabase.inc \_auditfiles_not_in_database_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.
3 calls to _auditfiles_not_in_database_batch_set_common_values()
- _auditfiles_not_in_database_batch_add_create_batch in ./
auditfiles.notindatabase.inc - Creates the batch for adding files to the database.
- _auditfiles_not_in_database_batch_delete_create_batch in ./
auditfiles.notindatabase.inc - Creates the batch for deleting files from the server.
- _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 190 - Generates a report showing files on the server, but not in the database.
Code
function _auditfiles_not_in_database_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.notindatabase.inc',
'finished' => '_auditfiles_not_in_database_batch_finish_batch',
'progress_message' => t('Completed @current of @total operations.'),
);
}