You are here

protected function SamlauthConfigureForm::getEditableConfigNames in SAML Authentication 8.3

Same name and namespace in other branches
  1. 8 src/Form/SamlauthConfigureForm.php \Drupal\samlauth\Form\SamlauthConfigureForm::getEditableConfigNames()
  2. 8.2 src/Form/SamlauthConfigureForm.php \Drupal\samlauth\Form\SamlauthConfigureForm::getEditableConfigNames()
  3. 4.x src/Form/SamlauthConfigureForm.php \Drupal\samlauth\Form\SamlauthConfigureForm::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/SamlauthConfigureForm.php, line 95

Class

SamlauthConfigureForm
Provides a configuration form for samlauth module settings and IdP/SP info.

Namespace

Drupal\samlauth\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 [];
}