You are here

public function FormWizardBase::getTempstore in Chaos Tool Suite (ctools) 8.3

The active SharedTempStore for this wizard.

Return value

\Drupal\Core\TempStore\SharedTempStore

Overrides FormWizardInterface::getTempstore

File

src/Wizard/FormWizardBase.php, line 134

Class

FormWizardBase
The base class for all form wizard.

Namespace

Drupal\ctools\Wizard

Code

public function getTempstore() {
  $tempstore = $this->tempstore
    ->get($this
    ->getTempstoreId());
  return $tempstore;
}