protected function Oauth2ClientPluginBase::getEditableConfigNames in OAuth2 Client 8.3
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/
Plugin/ Oauth2Client/ Oauth2ClientPluginBase.php, line 137
Class
- Oauth2ClientPluginBase
- Base class for Oauth2Client plugins.
Namespace
Drupal\oauth2_client\Plugin\Oauth2ClientCode
protected function getEditableConfigNames() {
return [
'oauth2_client.credentials.' . $this
->getId(),
];
}