function _batch_next_set

Same name in other branches
  1. 9 core/includes/batch.inc \_batch_next_set()
  2. 8.9.x core/includes/batch.inc \_batch_next_set()
  3. 10 core/includes/batch.inc \_batch_next_set()
  4. 11.x core/includes/batch.inc \_batch_next_set()

Retrieves the next set in a batch.

If there is a subsequent set in this batch, assign it as the new set to process and execute its form submit handler (if defined), which may add further sets to this batch.

Return value

TRUE if a subsequent set was found in the batch.

1 call to _batch_next_set()
_batch_process in includes/batch.inc
Processes sets in a batch.

File

includes/batch.inc, line 392

Code

function _batch_next_set() {
    $batch =& batch_get();
    if (isset($batch['sets'][$batch['current_set'] + 1])) {
        $batch['current_set']++;
        $current_set =& _batch_current_set();
        if (isset($current_set['form_submit']) && ($function = $current_set['form_submit']) && function_exists($function)) {
            // We use our stored copies of $form and $form_state to account for
            // possible alterations by previous form submit handlers.
            $function($batch['form_state']['complete form'], $batch['form_state']);
        }
        return TRUE;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.