You are here

function batch_get in Drupal 6

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

Retrieves the current batch.

Related topics

13 calls to batch_get()
batch_process in includes/form.inc
Processes the batch.
batch_set in includes/form.inc
Opens a new batch.
drupal_process_form in includes/form.inc
This function is the heart of form API. The form gets built, validated and in appropriate cases, submitted.
form_execute_handlers in includes/form.inc
A helper function used to execute custom validation and submission handlers for a given form. Button-specific handlers are checked first. If none exist, the function falls back to form-level handlers.
update.php in ./update.php
Administrative page for handling updates from one Drupal version to another.

... See full list

File

includes/form.inc, line 2677

Code

function &batch_get() {
  static $batch = array();
  return $batch;
}