Gets all stored information from this Key Value Store.

Return value

array An array of all key value pairs.

2 calls to State::getAll()
State::clearMissingFiles dans src/State/State.php
Scan the filesystem for missing files and removee from database.
State::getRandomKey dans src/State/State.php
Get a semi-random (randomness not guaranteed) key.

Fichier

src/State/State.php, line 23

Classe

State
Provides AdvAgg State interfaces with a few extra commands.

Namespace

Drupal\advagg\State

Code

public function getAll() {
    $values = $this->keyValueStore
        ->getAll();
    return $values;
}