function CKEditor5::__construct

Same name and namespace in other branches
  1. 10 core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php \Drupal\ckeditor5\Plugin\Editor\CKEditor5::__construct()
  2. 11.x core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php \Drupal\ckeditor5\Plugin\Editor\CKEditor5::__construct()

Constructs a CKEditor 5 editor plugin.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\ckeditor5\Plugin\CKEditor5PluginManagerInterface $ckeditor5_plugin_manager: The CKEditor 5 plugin manager.

\Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

\Drupal\ckeditor5\SmartDefaultSettings $smart_default_settings: The smart default settings utility.

\Drupal\Core\Cache\CacheBackendInterface $cache: The cache.

\Drupal\ckeditor5\CKEditor5StylesheetsMessage $stylesheets_message: The ckeditor_stylesheets message utility.

\Psr\Log\LoggerInterface $logger: A logger instance.

File

core/modules/ckeditor5/src/Plugin/Editor/CKEditor5.php, line 142

Class

CKEditor5
Defines a CKEditor 5-based text editor for Drupal.

Namespace

Drupal\ckeditor5\Plugin\Editor

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, CKEditor5PluginManagerInterface $ckeditor5_plugin_manager, LanguageManagerInterface $language_manager, ModuleHandlerInterface $module_handler, SmartDefaultSettings $smart_default_settings, CacheBackendInterface $cache, CKEditor5StylesheetsMessage $stylesheets_message, LoggerInterface $logger) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->ckeditor5PluginManager = $ckeditor5_plugin_manager;
    $this->languageManager = $language_manager;
    $this->moduleHandler = $module_handler;
    $this->smartDefaultSettings = $smart_default_settings;
    $this->cache = $cache;
    $this->stylesheetsMessage = $stylesheets_message;
    $this->logger = $logger;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.