You are here

public function BatchStorage::load in Drupal 8

Same name in this branch
  1. 8 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage::load()
  2. 8 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage::load()
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage::load()

Loads a batch.

Parameters

int $id: The ID of the batch to load.

Return value

array An array representing the batch, or FALSE if no batch was found.

Overrides BatchStorageInterface::load

File

core/lib/Drupal/Core/Batch/BatchStorage.php, line 57

Class

BatchStorage

Namespace

Drupal\Core\Batch

Code

public function load($id) {

  // Ensure that a session is started before using the CSRF token generator.
  $this->session
    ->start();
  try {
    $batch = $this->connection
      ->query("SELECT batch FROM {batch} WHERE bid = :bid AND token = :token", [
      ':bid' => $id,
      ':token' => $this->csrfToken
        ->get($id),
    ])
      ->fetchField();
  } catch (\Exception $e) {
    $this
      ->catchException($e);
    $batch = FALSE;
  }
  if ($batch) {
    return unserialize($batch);
  }
  return FALSE;
}