You are here

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\yamlform

Code

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