You are here

protected function LdapAuthenticationAdminForm::getEditableConfigNames in Lightweight Directory Access Protocol (LDAP) 8.4

Same name and namespace in other branches
  1. 8.3 ldap_authentication/src/Form/LdapAuthenticationAdminForm.php \Drupal\ldap_authentication\Form\LdapAuthenticationAdminForm::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

ldap_authentication/src/Form/LdapAuthenticationAdminForm.php, line 52

Class

LdapAuthenticationAdminForm
Provides the form for ldap_authentication options.

Namespace

Drupal\ldap_authentication\Form

Code

protected function getEditableConfigNames() : array {
  return [
    'ldap_authentication.settings',
  ];
}