batch_get

  1. drupal
    1. drupal6
    2. drupal7
Versionen
drupal6 – drupal7 &batch_get()

Retrieve the current batch.

Verwandte Themen

▾ 12 functions call batch_get()

batch_process in includes/form.inc
Process the batch.
batch_set in includes/form.inc
Open 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.
_batch_current_set in includes/batch.inc
Return the batch set being currently processed.
_batch_finished in includes/batch.inc
End the batch processing.
_batch_next_set in includes/batch.inc
Retrieve the next set in a batch.
_batch_page in includes/batch.inc
State-based dispatcher for the batch processing page.
_batch_process in includes/batch.inc
Process sets in a batch.
_batch_progress_page_js in includes/batch.inc
Output a batch processing page with JavaScript support.
_batch_progress_page_nojs in includes/batch.inc
Output a batch processing page without JavaScript support.
_batch_shutdown in includes/batch.inc
Shutdown function; store the current batch data for the next request.

Code

includes/form.inc, line 2969

<?php
function &batch_get() {
  static $batch = array();
  return $batch;
}
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen