function _batch_page

Renders the batch processing page based on the current state of the batch.

See also

_batch_shutdown()

4 calls to _batch_page()
authorize.php in drupal/core/authorize.php
Administrative script for running authorized file operations.
install_run_task in drupal/core/includes/install.core.inc
Runs an individual installation task.
system_batch_page in drupal/core/modules/system/system.admin.inc
Default page callback for batches.
update.php in drupal/core/update.php
Administrative page for handling updates from one Drupal version to another.

File

drupal/core/includes/batch.inc, line 24
Batch processing API for processes to run in multiple HTTP requests.

Code

function _batch_page() {
  $batch =& batch_get();
  if (!isset($_REQUEST['id'])) {
    return FALSE;
  }

  // Retrieve the current state of the batch.
  if (!$batch) {
    $batch = Drupal::service('batch.storage')
      ->load($_REQUEST['id']);
    if (!$batch) {
      drupal_set_message(t('No active batch.'), 'error');
      drupal_goto();
    }
  }

  // Register database update for the end of processing.
  drupal_register_shutdown_function('_batch_shutdown');

  // Add batch-specific CSS.
  foreach ($batch['sets'] as $batch_set) {
    if (isset($batch_set['css'])) {
      foreach ($batch_set['css'] as $css) {
        drupal_add_css($css);
      }
    }
  }
  $op = isset($_REQUEST['op']) ? $_REQUEST['op'] : '';
  $output = NULL;
  switch ($op) {
    case 'start':

      // Display the full progress page on startup and on each additional
      // non-JavaScript iteration.
      $output = _batch_progress_page();
      break;
    case 'do':

      // JavaScript-based progress page callback.
      $output = _batch_do();
      break;
    case 'do_nojs':

      // Non-JavaScript-based progress page.
      $output = _batch_progress_page();
      break;
    case 'finished':
      $output = _batch_finished();
      break;
  }
  return $output;
}