You are here

public function ConfigEntityBase::getThirdPartySettings in Drupal 9

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

Class

ConfigEntityBase
Defines a base configuration entity class.

Namespace

Drupal\Core\Config\Entity

Code

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