You are here

public function IndentBlock::getDependencies in CKEditor IndentBlock 8

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 CKEditorPluginBase::getDependencies

File

src/Plugin/CKEditorPlugin/IndentBlock.php, line 90

Class

IndentBlock
Defines the "Indent Block" plugin.

Namespace

Drupal\ckeditor_indentblock\Plugin\CKEditorPlugin

Code

public function getDependencies(Editor $editor) {

  // The Indent plugin is internal for Drupal 8 CKEditor and thus can't be
  // defined as a dependency.
  return [];
}