function FieldStorageConfig::setSetting
Sets the value for a field setting by name.
Parameters
string $setting_name: The name of the setting.
mixed $value: The value of the setting.
Return value
$this
Overrides FieldStorageConfigInterface::setSetting
File
-
core/
modules/ field/ src/ Entity/ FieldStorageConfig.php, line 598
Class
- FieldStorageConfig
- Defines the Field storage configuration entity.
Namespace
Drupal\field\EntityCode
public function setSetting($setting_name, $value) {
$this->settings[$setting_name] = $value;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.