public function ThirdPartySettingsInterface::setThirdPartySetting in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php \Drupal\Core\Config\Entity\ThirdPartySettingsInterface::setThirdPartySetting()
Sets the value of a third-party setting.
Parameters
string $module: The module providing the third-party setting.
string $key: The setting name.
mixed $value: The setting value.
Return value
$this
3 methods override ThirdPartySettingsInterface::setThirdPartySetting()
- ConfigEntityBase::setThirdPartySetting in core/
lib/ Drupal/ Core/ Config/ Entity/ ConfigEntityBase.php - Sets the value of a third-party setting.
- PluginSettingsBase::setThirdPartySetting in core/
lib/ Drupal/ Core/ Field/ PluginSettingsBase.php - Sets the value of a third-party setting.
- ViewUI::setThirdPartySetting in core/
modules/ views_ui/ src/ ViewUI.php - Sets the value of a third-party setting.
File
- core/
lib/ Drupal/ Core/ Config/ Entity/ ThirdPartySettingsInterface.php, line 32 - Contains \Drupal\Core\Config\Entity\ThirdPartySettingsInterface.
Class
- ThirdPartySettingsInterface
- Interface for configuration entities to store third party information.
Namespace
Drupal\Core\Config\EntityCode
public function setThirdPartySetting($module, $key, $value);