You are here

public function FormState::setProgrammed in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Form/FormState.php \Drupal\Core\Form\FormState::setProgrammed()

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 675
Contains \Drupal\Core\Form\FormState.

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