You are here

public function WebformThirdPartySettingsManager::getThirdPartyProviders in Webform 6.x

Same name and namespace in other branches
  1. 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\webform

Code

public function getThirdPartyProviders() {
  $third_party_settings = $this->config
    ->get('third_party_settings') ?: [];
  return array_keys($third_party_settings);
}