You are here

protected function SocialAddToCalendarSettingsForm::getEditableConfigNames in Open Social 8.9

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_event/modules/social_event_addtocal/src/Form/SocialAddToCalendarSettingsForm.php \Drupal\social_event_addtocal\Form\SocialAddToCalendarSettingsForm::getEditableConfigNames()
  2. 10.0.x modules/social_features/social_event/modules/social_event_addtocal/src/Form/SocialAddToCalendarSettingsForm.php \Drupal\social_event_addtocal\Form\SocialAddToCalendarSettingsForm::getEditableConfigNames()
  3. 10.1.x modules/social_features/social_event/modules/social_event_addtocal/src/Form/SocialAddToCalendarSettingsForm.php \Drupal\social_event_addtocal\Form\SocialAddToCalendarSettingsForm::getEditableConfigNames()
  4. 10.2.x modules/social_features/social_event/modules/social_event_addtocal/src/Form/SocialAddToCalendarSettingsForm.php \Drupal\social_event_addtocal\Form\SocialAddToCalendarSettingsForm::getEditableConfigNames()

Gets the configuration names that will be editable.

Return value

array An array of configuration object names that are editable if called in conjunction with the trait's config() method.

Overrides ConfigFormBaseTrait::getEditableConfigNames

File

modules/social_features/social_event/modules/social_event_addtocal/src/Form/SocialAddToCalendarSettingsForm.php, line 50

Class

SocialAddToCalendarSettingsForm
Class SocialAddToCalendarSettingsForm.

Namespace

Drupal\social_event_addtocal\Form

Code

protected function getEditableConfigNames() {
  return [
    'social_event_addtocal.settings',
  ];
}