system_batch_page

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

Default page callback for batches.

1 string reference to 'system_batch_page'

File

modules/system/system.admin.inc, line 2351
Admin page callbacks for the system module.

Code

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