public function ConfigEntityBase::getThirdPartySettings

public ConfigEntityBase::getThirdPartySettings($module)

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 553

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] : array();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!Entity!ConfigEntityBase.php/function/ConfigEntityBase::getThirdPartySettings/8.1.x