ConfigEntityBase::unsetThirdPartySetting

public ConfigEntityBase::unsetThirdPartySetting($module, $key)

Unsets a third-party setting.

Parameters

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

string $key: The setting name.

Return value

mixed The value.

Overrides ThirdPartySettingsInterface::unsetThirdPartySetting

File

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

Class

ConfigEntityBase
Defines a base configuration entity class.

Namespace

Drupal\Core\Config\Entity

Code

public function unsetThirdPartySetting($module, $key) {
  unset($this->third_party_settings[$module][$key]);
  // If the third party is no longer storing any information, completely
  // remove the array holding the settings for this module.
  if (empty($this->third_party_settings[$module])) {
    unset($this->third_party_settings[$module]);
  }
  return $this;
}
doc_Drupal
2016-10-29 08:52:33
Comments
Leave a Comment

Please login to continue.