function batch_get
Same name and namespace in other branches
- 7.x drupal-7.x/includes/form.inc \batch_get()
Retrieves the current batch.
Related topics
13 calls to batch_get()
- batch_process in drupal-6.x/
includes/ form.inc - Processes the batch.
- batch_set in drupal-6.x/
includes/ form.inc - Opens a new batch.
- drupal_process_form in drupal-6.x/
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 drupal-6.x/
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 drupal-6.x/
update.php - Administrative page for handling updates from one Drupal version to another.
Archivo
- drupal-6.x/
includes/ form.inc, line 2569
Código
function &batch_get() {
static $batch = array();
return $batch;
}