You are here

protected function RenderExampleDemoForm::getEditableConfigNames in Examples for Developers 3.x

Same name and namespace in other branches
  1. 8 render_example/src/Form/RenderExampleDemoForm.php \Drupal\render_example\Form\RenderExampleDemoForm::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/render_example/src/Form/RenderExampleDemoForm.php, line 265

Class

RenderExampleDemoForm
Provides the form for toggling module features on and off.

Namespace

Drupal\render_example\Form

Code

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