You are here

protected function WebformExampleCustomFormSettingsForm::getEditableConfigNames in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_example_custom_form/src/Form/WebformExampleCustomFormSettingsForm.php \Drupal\webform_example_custom_form\Form\WebformExampleCustomFormSettingsForm::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/webform_example_custom_form/src/Form/WebformExampleCustomFormSettingsForm.php, line 48

Class

WebformExampleCustomFormSettingsForm
Example: Webform Custom (Configuration) Form configuration settings form.

Namespace

Drupal\webform_example_custom_form\Form

Code

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