You are here

public function CkeditorTableSelection::getLibraries in CKEditor Table Selection 8

Same name and namespace in other branches
  1. 9.1.x src/Plugin/CKEditorPlugin/CkeditorTableSelection.php \Drupal\ckeditor_tableselection\Plugin\CKEditorPlugin\CkeditorTableSelection::getLibraries()
  2. 2.0.x src/Plugin/CKEditorPlugin/CkeditorTableSelection.php \Drupal\ckeditor_tableselection\Plugin\CKEditorPlugin\CkeditorTableSelection::getLibraries()

Returns a list of libraries this plugin requires.

These libraries will be attached to the text_format element on which the editor is being loaded.

Parameters

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

Return value

array An array of libraries suitable for usage in a render API #attached property.

Overrides CKEditorPluginInterface::getLibraries

File

src/Plugin/CKEditorPlugin/CkeditorTableSelection.php, line 85

Class

CkeditorTableSelection
Defines the "Table Selection" plugin.

Namespace

Drupal\ckeditor_tableselection\Plugin\CKEditorPlugin

Code

public function getLibraries(Editor $editor) {
  return [];
}