You are here

function CKEditorPluginBase::getDependencies in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/ckeditor/src/CKEditorPluginBase.php \Drupal\ckeditor\CKEditorPluginBase::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.

Overrides CKEditorPluginInterface::getDependencies

File

core/modules/ckeditor/src/CKEditorPluginBase.php, line 48
Contains \Drupal\ckeditor\CKEditorPluginBase.

Class

CKEditorPluginBase
Defines a base CKEditor plugin implementation.

Namespace

Drupal\ckeditor

Code

function getDependencies(Editor $editor) {
  return array();
}