You are here

public function LdapUserMappingBaseForm::getEditableConfigNames in Lightweight Directory Access Protocol (LDAP) 8.4

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_user/src/Form/LdapUserMappingBaseForm.php, line 102

Class

LdapUserMappingBaseForm
Provides the form to configure user configuration and field mapping.

Namespace

Drupal\ldap_user\Form

Code

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