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; }
Please login to continue.