You are here

function _background_batch_process_callback in Background Process 7.2

Same name and namespace in other branches
  1. 8 background_batch/background_batch.module \_background_batch_process_callback()
  2. 6 background_batch/background_batch.module \_background_batch_process_callback()
  3. 7 background_batch/background_batch.module \_background_batch_process_callback()

File

background_batch/background_batch.module, line 303
This module adds background processing to Drupals batch API

Code

function _background_batch_process_callback($batch) {
  $rbatch =& batch_get();
  $rbatch = $batch;
  require_once 'background_batch.pages.inc';
  _background_batch_page_start();
}