You are here

protected function FormModeConfigForm::getEditableConfigNames in Form Mode Control 8.2

Same name and namespace in other branches
  1. 8 src/Form/FormModeConfigForm.php \Drupal\form_mode_control\Form\FormModeConfigForm::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

src/Form/FormModeConfigForm.php, line 170

Class

FormModeConfigForm
Provides a form to configure which form modes to use, by bundle.

Namespace

Drupal\form_mode_control\Form

Code

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