You are here

public function FormStateDecoratorBase::setMethod in Drupal 8

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

Sets the HTTP method to use for the form's submission.

This is what the form's "method" attribute should be, not necessarily what the current request's HTTP method is. For example, a form can have a method attribute of POST, but the request that initially builds it uses GET.

Parameters

string $method: Either "GET" or "POST". Other HTTP methods are not valid form submission methods.

Return value

$this

Overrides FormStateInterface::setMethod

See also

\Drupal\Core\Form\FormState::$method

\Drupal\Core\Form\FormStateInterface::setRequestMethod()

File

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

Class

FormStateDecoratorBase
Decorates another form state.

Namespace

Drupal\Core\Form

Code

public function setMethod($method) {
  $this->decoratedFormState
    ->setMethod($method);
  return $this;
}