You are here

function _batch_do in Drupal 6

Same name and namespace in other branches
  1. 8 core/includes/batch.inc \_batch_do()
  2. 7 includes/batch.inc \_batch_do()
  3. 9 core/includes/batch.inc \_batch_do()
  4. 10 core/includes/batch.inc \_batch_do()

Do one pass of execution and inform back the browser about progression (used for JavaScript-mode only).

1 call to _batch_do()
_batch_page in includes/batch.inc
State-based dispatcher for the batch processing page.

File

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

Code

function _batch_do() {

  // HTTP POST required
  if ($_SERVER['REQUEST_METHOD'] != 'POST') {
    drupal_set_message(t('HTTP POST is required.'), 'error');
    drupal_set_title(t('Error'));
    return '';
  }

  // Perform actual processing.
  list($percentage, $message) = _batch_process();
  drupal_json(array(
    'status' => TRUE,
    'percentage' => $percentage,
    'message' => $message,
  ));
}