You are here

public function CKEditor5PluginDefinition::getToolbarItems in Drupal 10

Gets the list of toolbar items this plugin provides.

Return value

array[] An array of toolbar items.

See also

\Drupal\ckeditor5\Annotation\DrupalAspectsOfCKEditor5Plugin::$toolbar_items

1 call to CKEditor5PluginDefinition::getToolbarItems()
CKEditor5PluginDefinition::hasToolbarItems in core/modules/ckeditor5/src/Plugin/CKEditor5PluginDefinition.php
Whether this plugin has toolbar items.

File

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

Class

CKEditor5PluginDefinition
Provides an implementation of a CKEditor 5 plugin definition.

Namespace

Drupal\ckeditor5\Plugin

Code

public function getToolbarItems() : array {
  return $this->drupal['toolbar_items'];
}