protected function SamlauthConfigureForm::getEditableConfigNames in SAML Authentication 4.x
Same name and namespace in other branches
- 8.3 src/Form/SamlauthConfigureForm.php \Drupal\samlauth\Form\SamlauthConfigureForm::getEditableConfigNames()
- 8 src/Form/SamlauthConfigureForm.php \Drupal\samlauth\Form\SamlauthConfigureForm::getEditableConfigNames()
- 8.2 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\FormCode
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 [];
}