You are here

protected function CoreForm::getEditableConfigNames in UIkit Components 8.3

Same name and namespace in other branches
  1. 8.2 src/Form/CoreForm.php \Drupal\uikit_components\Form\CoreForm::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/CoreForm.php, line 78

Class

CoreForm
Form builder for the UIkit Components administration core form.

Namespace

Drupal\uikit_components\Form

Code

protected function getEditableConfigNames() {
  return [
    'uikit_components.core',
  ];
}