protected function EdgeEntityCacheConfigFormBase::getConfigNameWithCacheSettings in Apigee Edge 8
Returns the name of the config object that contains "cache_expiration" key.
Return value
string The if of a configuration object.
1 call to EdgeEntityCacheConfigFormBase::getConfigNameWithCacheSettings()
- EdgeEntityCacheConfigFormBase::buildForm in src/
Form/ EdgeEntityCacheConfigFormBase.php - Form constructor.
File
- src/
Form/ EdgeEntityCacheConfigFormBase.php, line 90
Class
- EdgeEntityCacheConfigFormBase
- Base cache expiration config form for Apigee Edge entities.
Namespace
Drupal\apigee_edge\FormCode
protected function getConfigNameWithCacheSettings() : string {
$configs = $this
->getEditableConfigNames();
return reset($configs);
}