You are here

protected function SamlauthMappingListForm::getEditableConfigNames in SAML Authentication 8.3

Same name and namespace in other branches
  1. 4.x modules/samlauth_user_fields/src/Form/SamlauthMappingListForm.php \Drupal\samlauth_user_fields\Form\SamlauthMappingListForm::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

modules/samlauth_user_fields/src/Form/SamlauthMappingListForm.php, line 53

Class

SamlauthMappingListForm
Displays the list of attribute-field mappings; edits related configuration.

Namespace

Drupal\samlauth_user_fields\Form

Code

protected function getEditableConfigNames() {

  // I'm using ConfigFormBase for the unified save button / message, but
  // don't want to use ConfigFormBase::config(), to keep a unified way of
  // getting config values in forms / not obfuscate call structures and get
  // confused later. So this method/value is unneeded, but ConfigFormBase
  // requires it. Let's make it empty.
  return [];
}