Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::getThirdPartySettings()
  2. 9 core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php \Drupal\Core\Config\Entity\ConfigEntityBase::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

core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 525

Class

ConfigEntityBase

Namespace

Drupal\Core\Config\Entity

Code

public function getThirdPartySettings($module) {
  return $this->third_party_settings[$module] ?? [];
}