You are here

protected function ParameterEditForm::getTempstore in Page Manager 8.4

Same name and namespace in other branches
  1. 8 page_manager_ui/src/Form/ParameterEditForm.php \Drupal\page_manager_ui\Form\ParameterEditForm::getTempstore()

Gets the temp store values.

Return value

array The temp store values.

2 calls to ParameterEditForm::getTempstore()
ParameterEditForm::buildForm in page_manager_ui/src/Form/ParameterEditForm.php
Form constructor.
ParameterEditForm::submitForm in page_manager_ui/src/Form/ParameterEditForm.php
Form submission handler.

File

page_manager_ui/src/Form/ParameterEditForm.php, line 100

Class

ParameterEditForm
Provides a form for editing a parameter.

Namespace

Drupal\page_manager_ui\Form

Code

protected function getTempstore() {
  return $this->tempstore
    ->get($this->tempstore_id)
    ->get($this->machine_name);
}