public function TawkToExtraSettingsForm::submitForm in Tawk.to - Live chat application (Drupal 8) 8
Same name and namespace in other branches
- 8.2 src/Form/TawkToExtraSettingsForm.php \Drupal\tawk_to\Form\TawkToExtraSettingsForm::submitForm()
Form submission handler.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Overrides ConfigFormBase::submitForm
File
- src/
Form/ TawkToExtraSettingsForm.php, line 233
Class
- TawkToExtraSettingsForm
- Provides form for block instance forms.
Namespace
Drupal\tawk_to\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$this
->submitVisibility($form, $form_state);
$this
->submitUserInfo($form, $form_state);
return parent::submitForm($form, $form_state);
}