You are here

public function FormStateInterface::setTemporary in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Form/FormStateInterface.php \Drupal\Core\Form\FormStateInterface::setTemporary()

Sets temporary data.

Parameters

array $temporary: Temporary data accessible during the current page request only.

Return value

$this

2 methods override FormStateInterface::setTemporary()
FormState::setTemporary in core/lib/Drupal/Core/Form/FormState.php
Sets temporary data.
FormStateDecoratorBase::setTemporary in core/lib/Drupal/Core/Form/FormStateDecoratorBase.php
Sets temporary data.

File

core/lib/Drupal/Core/Form/FormStateInterface.php, line 962

Class

FormStateInterface
Provides an interface for an object containing the current state of a form.

Namespace

Drupal\Core\Form

Code

public function setTemporary(array $temporary);