batch_set($batch_definition)
Adds a new batch.
Batch operations are added as new batch sets. Batch sets are used to spread processing (primarily, but not exclusively, forms processing) over several page requests. This helps to ensure that the processing is not interrupted due to PHP timeouts, while users are still able to receive feedback on the progress of the ongoing operations. Combining related operations into distinct batch sets provides clean code independence for each batch set, ensuring that two or more batches, submitted independently, can be processed without mutual interference. Each batch set may specify its own set of operations and results, produce its own UI messages, and trigger its own 'finished' callback. Batch sets are processed sequentially, with the progress bar starting afresh for each new set.
$batch_definition: An associative array defining the batch, with the following elements (all are optional except as noted):
array( array('callback_batch_operation_1', array($arg1)), array('callback_batch_operation_2', array($arg2_1, $arg2_2)), )
function batch_set($batch_definition) { if ($batch_definition) { $batch = &batch_get(); // Initialize the batch if needed. if (empty($batch)) { $batch = array( 'sets' => array(), 'has_form_submits' => FALSE, ); } // Base and default properties for the batch set. $init = array( 'sandbox' => array(), 'results' => array(), 'success' => FALSE, 'start' => 0, 'elapsed' => 0, ); $defaults = array( 'title' => t('Processing'), 'init_message' => t('Initializing.'), 'progress_message' => t('Completed @current of @total.'), 'error_message' => t('An error has occurred.'), 'css' => array(), ); $batch_set = $init + $batch_definition + $defaults; // Tweak init_message to avoid the bottom of the page flickering down after // init phase. $batch_set['init_message'] .= '<br/> '; // The non-concurrent workflow of batch execution allows us to save // numberOfItems() queries by handling our own counter. $batch_set['total'] = count($batch_set['operations']); $batch_set['count'] = $batch_set['total']; // Add the set to the batch. if (empty($batch['id'])) { // The batch is not running yet. Simply add the new set. $batch['sets'][] = $batch_set; } else { // The set is being added while the batch is running. Insert the new set // right after the current one to ensure execution order, and store its // operations in a queue. $index = $batch['current_set'] + 1; $slice1 = array_slice($batch['sets'], 0, $index); $slice2 = array_slice($batch['sets'], $index); $batch['sets'] = array_merge($slice1, array($batch_set), $slice2); _batch_populate_queue($batch, $index); } } }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!form.inc/function/batch_set/8.1.x