You are here

public function CKEditor5PluginDefinition::isConfigurable in Drupal 10

Whether this plugin is configurable by the user.

Return value

bool TRUE if it is configurable, FALSE otherwise.

See also

\Drupal\ckeditor5\Plugin\CKEditor5PluginConfigurableInterface

File

core/modules/ckeditor5/src/Plugin/CKEditor5PluginDefinition.php, line 315

Class

CKEditor5PluginDefinition
Provides an implementation of a CKEditor 5 plugin definition.

Namespace

Drupal\ckeditor5\Plugin

Code

public function isConfigurable() : bool {
  return is_subclass_of($this
    ->getClass(), CKEditor5PluginConfigurableInterface::class);
}