system_batch_page
- Versions
- 6 – 7
system_batch_page()
Default page callback for batches.
Code
modules/system/system.admin.inc, line 1806
<?php
function system_batch_page() {
require_once './includes/batch.inc';
$output = _batch_page();
if ($output === FALSE) {
drupal_access_denied();
}
elseif (isset($output)) {
// Force a page without blocks or messages to
// display a list of collected messages later.
print theme('page', $output, FALSE, FALSE);
}
}
?>Login or register to post comments 