You are here

function _batch_do in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/includes/batch.inc \_batch_do()

Does one execution pass with JavaScript and returns progress to the browser.

See also

_batch_progress_page_js()

_batch_process()

1 call to _batch_do()
_batch_page in core/includes/batch.inc
Renders the batch processing page based on the current state of the batch.

File

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

Code

function _batch_do() {

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