You are here

protected function ProtectedPagesSettingForm::getEditableConfigNames in Protected Pages 8

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/ProtectedPagesSettingForm.php, line 22

Class

ProtectedPagesSettingForm
Provides protected pages settings configuration form.

Namespace

Drupal\protected_pages\Form

Code

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