You are here

public function EditorBase::getDefaultSettings in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/editor/src/Plugin/EditorBase.php \Drupal\editor\Plugin\EditorBase::getDefaultSettings()
  2. 10 core/modules/editor/src/Plugin/EditorBase.php \Drupal\editor\Plugin\EditorBase::getDefaultSettings()

Returns the default settings for this configurable text editor.

Return value

array An array of settings as they would be stored by a configured text editor entity (\Drupal\editor\Entity\Editor).

Overrides EditorPluginInterface::getDefaultSettings

3 methods override EditorBase::getDefaultSettings()
CKEditor::getDefaultSettings in core/modules/ckeditor/src/Plugin/Editor/CKEditor.php
Returns the default settings for this configurable text editor.
TRexEditor::getDefaultSettings in core/modules/editor/tests/modules/src/Plugin/Editor/TRexEditor.php
Returns the default settings for this configurable text editor.
UnicornEditor::getDefaultSettings in core/modules/editor/tests/modules/src/Plugin/Editor/UnicornEditor.php
Returns the default settings for this configurable text editor.

File

core/modules/editor/src/Plugin/EditorBase.php, line 28

Class

EditorBase
Defines a base class from which other modules providing editors may extend.

Namespace

Drupal\editor\Plugin

Code

public function getDefaultSettings() {
  return [];
}