function _auditfiles_not_in_database_batch_display_create_batch in Audit Files 7.3
Same name and namespace in other branches
- 7.4 auditfiles.notindatabase.inc \_auditfiles_not_in_database_batch_display_create_batch()
Prepares the definition for the page display batch.
Return value
array The batch definition.
1 call to _auditfiles_not_in_database_batch_display_create_batch()
- auditfiles_not_in_database_form_submit in ./
auditfiles.notindatabase.inc - Submit handler for the auditfiles_not_in_database_form form.
File
- ./
auditfiles.notindatabase.inc, line 234 - Generates a report showing files on the server, but not in the database.
Code
function _auditfiles_not_in_database_batch_display_create_batch() {
$batch = _auditfiles_not_in_database_batch_set_common_values();
$batch['title'] = t('Loading file audit data');
$batch['operations'] = _auditfiles_not_in_database_batch_display_get_operations();
return $batch;
}