You are here

protected function AdminSettingsForm::getEditableConfigNames in Role Based Theme Switcher 8

Same name and namespace in other branches
  1. 9.1.x src/Form/AdminSettingsForm.php \Drupal\role_based_theme_switcher\Form\AdminSettingsForm::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/AdminSettingsForm.php, line 226

Class

AdminSettingsForm
Configure Role Based settings for this site.

Namespace

Drupal\role_based_theme_switcher\Form

Code

protected function getEditableConfigNames() {
  return [
    'role_based_theme_switcher.RoleBasedThemeSwitchConfig',
  ];
}