You are here

protected function GlobalSettingsForm::getEditableConfigNames in Layout Builder Component Attributes 1.1.x

Same name and namespace in other branches
  1. 1.2.x src/Form/GlobalSettingsForm.php \Drupal\layout_builder_component_attributes\Form\GlobalSettingsForm::getEditableConfigNames()
  2. 1.0.x src/Form/GlobalSettingsForm.php \Drupal\layout_builder_component_attributes\Form\GlobalSettingsForm::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/GlobalSettingsForm.php, line 30

Class

GlobalSettingsForm
Global settings form.

Namespace

Drupal\layout_builder_component_attributes\Form

Code

protected function getEditableConfigNames() {
  return [
    static::SETTINGS,
  ];
}