public function Editor::setEditor in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/editor/src/Entity/Editor.php \Drupal\editor\Entity\Editor::setEditor()
Set the text editor plugin ID.
Parameters
string $editor: The text editor plugin ID to set.
Overrides EditorInterface::setEditor
File
- core/
modules/ editor/ src/ Entity/ Editor.php, line 153 - Contains \Drupal\editor\Entity\Editor.
Class
- Editor
- Defines the configured text editor entity.
Namespace
Drupal\editor\EntityCode
public function setEditor($editor) {
$this->editor = $editor;
return $this;
}