function PluginSettingsBase::getSetting
Returns the value of a setting, or its default value if absent.
Parameters
string $key: The setting name.
Return value
mixed The setting value.
Overrides PluginSettingsInterface::getSetting
153 calls to PluginSettingsBase::getSetting()
- BaseFieldFileFormatterBase::settingsForm in core/modules/ file/ src/ Plugin/ Field/ FieldFormatter/ BaseFieldFileFormatterBase.php 
- Returns a form to configure settings for the formatter.
- BaseFieldFileFormatterBase::viewElements in core/modules/ file/ src/ Plugin/ Field/ FieldFormatter/ BaseFieldFileFormatterBase.php 
- Builds a renderable array for a field value.
- BooleanCheckboxWidget::formElement in core/lib/ Drupal/ Core/ Field/ Plugin/ Field/ FieldWidget/ BooleanCheckboxWidget.php 
- BooleanCheckboxWidget::settingsForm in core/lib/ Drupal/ Core/ Field/ Plugin/ Field/ FieldWidget/ BooleanCheckboxWidget.php 
- BooleanCheckboxWidget::settingsSummary in core/lib/ Drupal/ Core/ Field/ Plugin/ Field/ FieldWidget/ BooleanCheckboxWidget.php 
File
- 
              core/lib/ Drupal/ Core/ Field/ PluginSettingsBase.php, line 59 
Class
- PluginSettingsBase
- Base class for the Field API plugins.
Namespace
Drupal\Core\FieldCode
public function getSetting($key) {
  // Merge defaults if we have no value for the key.
  if (!$this->defaultSettingsMerged && !array_key_exists($key, $this->settings)) {
    $this->mergeDefaults();
  }
  return $this->settings[$key] ?? NULL;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
