You are here

public function YamlFormThirdPartySettingsManager::getThirdPartySettings in YAML Form 8

Gets all third-party settings of a given module.

Parameters

string $module: The module providing the third-party settings.

Return value

array An array of key-value pairs.

Overrides ThirdPartySettingsInterface::getThirdPartySettings

File

src/YamlFormThirdPartySettingsManager.php, line 161

Class

YamlFormThirdPartySettingsManager
Form third party settings manager.

Namespace

Drupal\yamlform

Code

public function getThirdPartySettings($module) {
  $this->config
    ->get("third_party_settings.{$module}") ?: [];
}