FormState::setProgrammed

public FormState::setProgrammed($programmed = TRUE)

Sets that this form was submitted programmatically.

Parameters

bool $programmed: If TRUE, the form was submitted programmatically.

Return value

$this

Overrides FormStateInterface::setProgrammed

File

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

Class

FormState
Stores information about the state of a form.

Namespace

Drupal\Core\Form

Code

public function setProgrammed($programmed = TRUE) {
  $this->programmed = (bool) $programmed;
  return $this;
}
doc_Drupal
2016-10-29 09:16:06
Comments
Leave a Comment

Please login to continue.