You are here

function hook_webform_admin_third_party_settings_form_alter in Webform 8.5

Same name and namespace in other branches
  1. 6.x webform.api.php \hook_webform_admin_third_party_settings_form_alter()

Perform alterations on webform admin third party settings form.

This hook is identical to hook_form_alter() but allows contrib and custom modules to define third party settings.

Parameters

array $form: Nested array of form elements that comprise the webform.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

See also

\Drupal\webform\Form\WebformAdminSettingsForm

webform.honeypot.inc

7 functions implement hook_webform_admin_third_party_settings_form_alter()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

antibot_webform_admin_third_party_settings_form_alter in third_party_settings/webform.antibot.inc
Implements hook_webform_admin_third_party_settings_form_alter().
captcha_webform_admin_third_party_settings_form_alter in third_party_settings/webform.captcha.inc
Implements hook_webform_admin_third_party_settings_form_alter().
honeypot_webform_admin_third_party_settings_form_alter in third_party_settings/webform.honeypot.inc
Implements hook_webform_admin_third_party_settings_form_alter().
webform_entity_print_webform_admin_third_party_settings_form_alter in modules/webform_entity_print/webform_entity_print.webform.inc
Implements hook_webform_admin_third_party_settings_form_alter().
webform_icheck_webform_admin_third_party_settings_form_alter in modules/webform_icheck/webform_icheck.module
Implements hook_webform_admin_third_party_settings_form_alter().

... See full list

1 invocation of hook_webform_admin_third_party_settings_form_alter()
WebformAdminConfigFormsForm::buildForm in src/Form/AdminConfig/WebformAdminConfigFormsForm.php
Form constructor.

File

./webform.api.php, line 397
Hooks related to Webform module.

Code

function hook_webform_admin_third_party_settings_form_alter(array &$form, \Drupal\Core\Form\FormStateInterface $form_state) {
}