You are here

public function SocialEventTypeSettings::submitForm in Open Social 8.4

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  2. 8 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  3. 8.2 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  4. 8.3 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  5. 8.5 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  6. 8.6 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  7. 8.7 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  8. 8.8 modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  9. 10.3.x modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  10. 10.0.x modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  11. 10.1.x modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::submitForm()
  12. 10.2.x modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php \Drupal\social_event_type\Form\SocialEventTypeSettings::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

modules/social_features/social_event/modules/social_event_type/src/Form/SocialEventTypeSettings.php, line 60

Class

SocialEventTypeSettings
Class SocialEventTypeSettings.

Namespace

Drupal\social_event_type\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
  parent::submitForm($form, $form_state);
  $this
    ->config('social_event_type.settings')
    ->set('social_event_type_required', $form_state
    ->getValue('social_event_type_required'))
    ->set('social_event_type_select_changer', $form_state
    ->getValue('social_event_type_select_changer'))
    ->save();
}