public function PluginSettingsBase::setSetting in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Field/PluginSettingsBase.php \Drupal\Core\Field\PluginSettingsBase::setSetting()
- 9 core/lib/Drupal/Core/Field/PluginSettingsBase.php \Drupal\Core\Field\PluginSettingsBase::setSetting()
Sets the value of a setting for the plugin.
Parameters
string $key: The setting name.
mixed $value: The setting value.
Return value
$this
Overrides PluginSettingsInterface::setSetting
2 calls to PluginSettingsBase::setSetting()
- ImageFormatter::onDependencyRemoval in core/
modules/ image/ src/ Plugin/ Field/ FieldFormatter/ ImageFormatter.php - Informs the plugin that some configuration it depends on will be deleted.
- TestFieldWidget::onDependencyRemoval in core/
modules/ field/ tests/ modules/ field_test/ src/ Plugin/ Field/ FieldWidget/ TestFieldWidget.php - Informs the plugin that some configuration it depends on will be deleted.
File
- core/
lib/ Drupal/ Core/ Field/ PluginSettingsBase.php, line 87
Class
- PluginSettingsBase
- Base class for the Field API plugins.
Namespace
Drupal\Core\FieldCode
public function setSetting($key, $value) {
$this->settings[$key] = $value;
return $this;
}