protected function EdgeEntityAliasConfigFormBase::getConfigNameWithLabels in Apigee Edge 8
Returns the name of the config that contains the entity labels.
Return value
string The name of the config.
2 calls to EdgeEntityAliasConfigFormBase::getConfigNameWithLabels()
- EdgeEntityAliasConfigFormBase::buildForm in src/
Form/ EdgeEntityAliasConfigFormBase.php - Form constructor.
- EdgeEntityAliasConfigFormBase::submitForm in src/
Form/ EdgeEntityAliasConfigFormBase.php - Form submission handler.
File
- src/
Form/ EdgeEntityAliasConfigFormBase.php, line 85
Class
- EdgeEntityAliasConfigFormBase
- Base form for those Apigee Edge entities that supports aliasing.
Namespace
Drupal\apigee_edge\FormCode
protected function getConfigNameWithLabels() : string {
$configs = $this
->getEditableConfigNames();
return reset($configs);
}