W3cubDocs

/Drupal 8

public function FormState::setMethod

public FormState::setMethod($method)

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/FormState.php, line 586

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;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Form!FormState.php/function/FormState::setMethod/8.1.x