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