- drupal
- drupal6
- drupal7
| Versionen | |
| drupal6 – drupal7 |
&batch_get() |
Retrieve the current batch.
Verwandte Themen
- Batch operations
- Functions allowing forms processing to be spread out over several page
requests, thus ensuring that the processing does not get interrupted
because of a PHP timeout, while allowing the user to receive feedback
on the progress of the ongoing operations.
Code
includes/form.inc, line 2969
<?php
function &batch_get() {
static $batch = array();
return $batch;
}
?>
Kommentare
Kommentar hinzufügen