function PluginSettingsBase::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
Overrides ThirdPartySettingsInterface::setThirdPartySetting
File
- 
              core/lib/ Drupal/ Core/ Field/ PluginSettingsBase.php, line 112 
Class
- PluginSettingsBase
- Base class for the Field API plugins.
Namespace
Drupal\Core\FieldCode
public function setThirdPartySetting($module, $key, $value) {
  $this->thirdPartySettings[$module][$key] = $value;
  return $this;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
