system_batch_page
- Versions
- 6 – 7
system_batch_page()
Default page callback for batches.
Code
modules/system/system.admin.inc, line 2163
<?php
function system_batch_page() {
require_once DRUPAL_ROOT . '/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.
drupal_set_page_content($output);
$page = element_info('page');
$page['#show_messages'] = FALSE;
return $page;
}
}
?>Login or register to post comments 