public function FormStateInterface::setStorage in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Form/FormStateInterface.php \Drupal\Core\Form\FormStateInterface::setStorage()
- 10 core/lib/Drupal/Core/Form/FormStateInterface.php \Drupal\Core\Form\FormStateInterface::setStorage()
Sets the entire set of arbitrary data.
Parameters
array $storage: The entire set of arbitrary data to store for this form.
Return value
$this
2 methods override FormStateInterface::setStorage()
- FormState::setStorage in core/
lib/ Drupal/ Core/ Form/ FormState.php - Sets the entire set of arbitrary data.
- FormStateDecoratorBase::setStorage in core/
lib/ Drupal/ Core/ Form/ FormStateDecoratorBase.php - Sets the entire set of arbitrary data.
File
- core/
lib/ Drupal/ Core/ Form/ FormStateInterface.php, line 169
Class
- FormStateInterface
- Provides an interface for an object containing the current state of a form.
Namespace
Drupal\Core\FormCode
public function setStorage(array $storage);