Same name and namespace in other branches
  1. 8.9.x core/modules/editor/src/Entity/Editor.php \Drupal\editor\Entity\Editor::setSettings()
  2. 9 core/modules/editor/src/Entity/Editor.php \Drupal\editor\Entity\Editor::setSettings()

Sets the text editor plugin-specific settings.

Parameters

array $settings: The structured array containing all text editor settings.

Return value

$this

Overrides EditorInterface::setSettings

File

core/modules/editor/src/Entity/Editor.php, line 191

Class

Editor
Defines the configured text editor entity.

Namespace

Drupal\editor\Entity

Code

public function setSettings(array $settings) {
  $this->settings = $settings;
  return $this;
}