function FormWizardBase::getTempstore

Same name in other branches
  1. 4.0.x src/Wizard/FormWizardBase.php \Drupal\ctools\Wizard\FormWizardBase::getTempstore()

Overrides FormWizardInterface::getTempstore

File

src/Wizard/FormWizardBase.php, line 144

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;
}