Editor::hasAssociatedFilterFormat

public Editor::hasAssociatedFilterFormat() Returns whether this text editor has an associated filter format. A text editor may be created at the same time as the filter format it's going to be associated with; in that case, no filter format object is available yet. Return value bool Overrides EditorInterface::hasAssociatedFilterFormat File core/modules/editor/src/Entity/Editor.php, line 114 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code pub

Editor::getSettings

public Editor::getSettings() Returns the text editor plugin-specific settings. Return value array A structured array containing all text editor settings. Overrides EditorInterface::getSettings File core/modules/editor/src/Entity/Editor.php, line 159 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code public function getSettings() { return $this->settings; }

Editor::getImageUploadSettings

public Editor::getImageUploadSettings() Returns the image upload settings. Return value array A structured array containing image upload settings. Overrides EditorInterface::getImageUploadSettings File core/modules/editor/src/Entity/Editor.php, line 174 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code public function getImageUploadSettings() { return $this->image_upload; }

Editor::getFilterFormat

public Editor::getFilterFormat() Returns the filter format this text editor is associated with. This could be NULL if the associated filter format is still being created. Return value \Drupal\filter\FilterFormatInterface|null Overrides EditorInterface::getFilterFormat See also hasAssociatedFilterFormat() File core/modules/editor/src/Entity/Editor.php, line 121 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code public function getFilterFormat()

Editor::getEditor

public Editor::getEditor() Returns the associated text editor plugin ID. Return value string The text editor plugin ID. Overrides EditorInterface::getEditor File core/modules/editor/src/Entity/Editor.php, line 144 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code public function getEditor() { return $this->editor; }

Editor::calculateDependencies

public Editor::calculateDependencies() Calculates dependencies and stores them in the dependency property. Return value $this Overrides ConfigEntityBase::calculateDependencies See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/modules/editor/src/Entity/Editor.php, line 100 Class Editor Defines the configured text editor entity. Namespace Drupal\editor\Entity Code public function calculateDependencies() { parent::calculateDependencies(); // Create a dependency o

Editor::$supports_inline_editing

Whether the editor supports the inline editing provided by the Edit module. Type: bool File core/modules/editor/src/Annotation/Editor.php, line 83 Class Editor Defines an Editor annotation object. Namespace Drupal\editor\Annotation Code public $supports_inline_editing;

Editor::$supports_content_filtering

Whether the editor supports "allowed content only" filtering. Type: bool File core/modules/editor/src/Annotation/Editor.php, line 76 Class Editor Defines an Editor annotation object. Namespace Drupal\editor\Annotation Code public $supports_content_filtering;

Editor::$supported_element_types

A list of element types this text editor supports. Type: string[] File core/modules/editor/src/Annotation/Editor.php, line 97 Class Editor Defines an Editor annotation object. Namespace Drupal\editor\Annotation Code public $supported_element_types;

Editor::$settings

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