Interface for configuration entities to store third party information.
A third party is a module that needs to store tightly coupled information to the configuration entity. For example, a module alters the node type form can use this to store its configuration so that it will be deployed with the node type.
Hierarchy
- interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterface
File
- core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php, line 13
Namespace
Drupal\Core\Config\Entity
Members
Name | Modifiers | Type | Description |
---|---|---|---|
ThirdPartySettingsInterface::getThirdPartyProviders | public | function | Gets the list of third parties that store information. |
ThirdPartySettingsInterface::getThirdPartySetting | public | function | Gets the value of a third-party setting. |
ThirdPartySettingsInterface::getThirdPartySettings | public | function | Gets all third-party settings of a given module. |
ThirdPartySettingsInterface::setThirdPartySetting | public | function | Sets the value of a third-party setting. |
ThirdPartySettingsInterface::unsetThirdPartySetting | public | function | Unsets a third-party setting. |
Please login to continue.