You are here

protected function ThemeAdminForm::getEditableConfigNames in Zircon Profile 8.0

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

core/modules/system/src/Form/ThemeAdminForm.php, line 27
Contains \Drupal\system\Form\ThemeAdminForm.

Class

ThemeAdminForm
Form to select the administration theme.

Namespace

Drupal\system\Form

Code

protected function getEditableConfigNames() {
  return [
    'system.theme',
  ];
}