You are here

public function CKEditorPluginContextualInterface::isEnabled in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/ckeditor/src/CKEditorPluginContextualInterface.php \Drupal\ckeditor\CKEditorPluginContextualInterface::isEnabled()
  2. 9 core/modules/ckeditor/src/CKEditorPluginContextualInterface.php \Drupal\ckeditor\CKEditorPluginContextualInterface::isEnabled()

Checks if this plugin should be enabled based on the editor configuration.

The editor's settings can be retrieved via $editor->getSettings().

Parameters

\Drupal\editor\Entity\Editor $editor: A configured text editor object.

Return value

bool

2 methods override CKEditorPluginContextualInterface::isEnabled()
LlamaContextual::isEnabled in core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaContextual.php
Checks if this plugin should be enabled based on the editor configuration.
LlamaContextualAndButton::isEnabled in core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaContextualAndButton.php
Checks if this plugin should be enabled based on the editor configuration.

File

core/modules/ckeditor/src/CKEditorPluginContextualInterface.php, line 40

Class

CKEditorPluginContextualInterface
Defines an interface for contextually enabled CKEditor plugins.

Namespace

Drupal\ckeditor

Code

public function isEnabled(Editor $editor);