public function YamlFormThirdPartySettingsManager::getThirdPartyProviders in YAML Form 8
Gets the list of third parties that store information.
Return value
array The list of third parties.
Overrides ThirdPartySettingsInterface::getThirdPartyProviders
File
- src/
YamlFormThirdPartySettingsManager.php, line 181
Class
- YamlFormThirdPartySettingsManager
- Form third party settings manager.
Namespace
Drupal\yamlformCode
public function getThirdPartyProviders() {
$third_party_settings = $this->config
->get('third_party_settings') ?: [];
return array_keys($third_party_settings);
}