You are here

public function CKEditorPluginInterface::getDependencies in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/ckeditor/src/CKEditorPluginInterface.php \Drupal\ckeditor\CKEditorPluginInterface::getDependencies()
  2. 10 core/modules/ckeditor/src/CKEditorPluginInterface.php \Drupal\ckeditor\CKEditorPluginInterface::getDependencies()

Returns a list of plugins this plugin requires.

Parameters

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

Return value

array An unindexed array of plugin names this plugin requires. Each plugin is is identified by its annotated ID.

4 methods override CKEditorPluginInterface::getDependencies()
CKEditorPluginBase::getDependencies in core/modules/ckeditor/src/CKEditorPluginBase.php
Returns a list of plugins this plugin requires.
DrupalImageCaption::getDependencies in core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalImageCaption.php
Returns a list of plugins this plugin requires.
DrupalMedia::getDependencies in core/modules/media/src/Plugin/CKEditorPlugin/DrupalMedia.php
Returns a list of plugins this plugin requires.
Llama::getDependencies in core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/Llama.php
Returns a list of plugins this plugin requires.

File

core/modules/ckeditor/src/CKEditorPluginInterface.php, line 53

Class

CKEditorPluginInterface
Defines an interface for (loading of) CKEditor plugins.

Namespace

Drupal\ckeditor

Code

public function getDependencies(Editor $editor);