public function WebformThirdPartySettingsManager::getThirdPartyProviders in Webform 6.x
Same name and namespace in other branches
- 8.5 src/WebformThirdPartySettingsManager.php \Drupal\webform\WebformThirdPartySettingsManager::getThirdPartyProviders()
Gets the list of third parties that store information.
Return value
array The list of third parties.
Overrides ThirdPartySettingsInterface::getThirdPartyProviders
File
- src/
WebformThirdPartySettingsManager.php, line 140
Class
- WebformThirdPartySettingsManager
- Webform third party settings manager.
Namespace
Drupal\webformCode
public function getThirdPartyProviders() {
$third_party_settings = $this->config
->get('third_party_settings') ?: [];
return array_keys($third_party_settings);
}