1 system.admin.inc | system_batch_page() |
Default page callback for batches.
File
- core/
modules/ system/ system.admin.inc, line 2671 - Admin page callbacks for the System module.
Code
function system_batch_page() {
require_once BACKDROP_ROOT . '/core/includes/batch.inc';
$output = _batch_page();
if ($output === FALSE) {
backdrop_access_denied();
}
else {
return $output;
}
}