function system_batch_page

7.x system.admin.inc system_batch_page()
6.x system.admin.inc system_batch_page()

Default page callback for batches.

1 string reference to 'system_batch_page'
system_menu in drupal-6.x/modules/system/system.module
Implementation of hook_menu().

File

drupal-6.x/modules/system/system.admin.inc, line 1827
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);
  }
}