Editor::$label

The human-readable name of the editor plugin. Type: \Drupal\Core\Annotation\Translation Related topics Annotation for translatable text Describes how to put translatable UI text into annotations. File core/modules/editor/src/Annotation/Editor.php, line 69 Class Editor Defines an Editor annotation object. Namespace Drupal\editor\Annotation Code public $label;

Editor::$is_xss_safe

Whether this text editor is not vulnerable to XSS attacks. Type: bool File core/modules/editor/src/Annotation/Editor.php, line 90 Class Editor Defines an Editor annotation object. Namespace Drupal\editor\Annotation Code public $is_xss_safe;

Editor::$image_upload

The structured array of image upload settings. Type: array File core/modules/editor/src/Entity/Editor.php, line 59 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code protected $image_upload = array();

Editor::$id

The plugin ID. Type: string File core/modules/editor/src/Annotation/Editor.php, line 60 Class Editor Defines an Editor annotation object. Namespace Drupal\editor\Annotation Code public $id;

Editor::$format

The machine name of the text format with which this configured text editor is associated. Type: string See also getFilterFormat() File core/modules/editor/src/Entity/Editor.php, line 38 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code protected $format;

Editor::$filterFormat

The filter format this text editor is associated with. Type: \Drupal\filter\FilterFormatInterface File core/modules/editor/src/Entity/Editor.php, line 66 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code protected $filterFormat;

Editor::$editor

The name (plugin ID) of the text editor. Type: string File core/modules/editor/src/Entity/Editor.php, line 45 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code protected $editor;

editor.module

Adds bindings for client-side "text editors" to text formats. File core/modules/editor/editor.module Functions Name Description editor_element_info_alter Implements hook_element_info_alter(). editor_entity_delete Implements hook_entity_delete(). editor_entity_insert Implements hook_entity_insert(). editor_entity_revision_delete Implements hook_entity_revision_delete(). editor_entity_update Implements hook_entity_update(). editor_field_formatter_info_alter Implement

editor.admin.inc

Administration functions for editor.module. File core/modules/editor/editor.admin.inc Functions Name Description editor_image_upload_settings_form Subform constructor to configure the text editor's image upload settings.

Editor

Defines the configured text editor entity. Plugin annotation @ConfigEntityType( id = "editor", label = @Translation("Text Editor"), handlers = { "access" = "Drupal\editor\EditorAccessControlHandler", }, entity_keys = { "id" = "format" }, config_export = { "format", "editor", "settings", "image_upload", } ) Hierarchy class \Drupal\Core\Entity\Entity implements EntityInterface uses RefinableCacheableDependencyTrait, DependencySerializationTraitclass \Drupa