function FormState::setMethod

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::setMethod()
  2. 8.9.x core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::setMethod()
  3. 11.x core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::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

File

core/lib/Drupal/Core/Form/FormState.php, line 636

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.