public function WebformThirdPartySettingsManager::getThirdPartySettings in Webform 6.x
Same name and namespace in other branches
- 8.5 src/WebformThirdPartySettingsManager.php \Drupal\webform\WebformThirdPartySettingsManager::getThirdPartySettings()
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/
WebformThirdPartySettingsManager.php, line 118
Class
- WebformThirdPartySettingsManager
- Webform third party settings manager.
Namespace
Drupal\webformCode
public function getThirdPartySettings($module) {
$this->config
->get("third_party_settings.{$module}") ?: [];
}