function system_batch_page in Drupal 6
Same name and namespace in other branches
- 7 modules/system/system.admin.inc \system_batch_page()
Default page callback for batches.
1 string reference to 'system_batch_page'
- system_menu in modules/
system/ system.module - Implementation of hook_menu().
File
- modules/
system/ system.admin.inc, line 1833 - Admin page callbacks for the system module.
Code
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);
}
}