You are here

protected function EnrollRequestModalForm::getEditableConfigNames in Open Social 8.9

Same name and namespace in other branches
  1. 10.3.x modules/social_features/social_event/src/Form/EnrollRequestModalForm.php \Drupal\social_event\Form\EnrollRequestModalForm::getEditableConfigNames()
  2. 10.0.x modules/social_features/social_event/src/Form/EnrollRequestModalForm.php \Drupal\social_event\Form\EnrollRequestModalForm::getEditableConfigNames()
  3. 10.1.x modules/social_features/social_event/src/Form/EnrollRequestModalForm.php \Drupal\social_event\Form\EnrollRequestModalForm::getEditableConfigNames()
  4. 10.2.x modules/social_features/social_event/src/Form/EnrollRequestModalForm.php \Drupal\social_event\Form\EnrollRequestModalForm::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.

File

modules/social_features/social_event/src/Form/EnrollRequestModalForm.php, line 141

Class

EnrollRequestModalForm
SendToDestinationsForm class.

Namespace

Drupal\social_event\Form

Code

protected function getEditableConfigNames() {
  return [
    'config.request_enrollment_modal_form',
  ];
}