You are here

public function FormStateDecoratorBase::setCompleteForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::setCompleteForm()
  2. 10 core/lib/Drupal/Core/Form/FormStateDecoratorBase.php \Drupal\Core\Form\FormStateDecoratorBase::setCompleteForm()

Stores the complete form array.

Parameters

array $complete_form: The complete form array.

Return value

$this

Overrides FormStateInterface::setCompleteForm

File

core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 432

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function setCompleteForm(array &$complete_form) {
  $this->decoratedFormState
    ->setCompleteForm($complete_form);
  return $this;
}