You are here

function DrupalUploadImageImce::getLibraries in CKEditor Upload Image 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/CKEditorPlugin/DrupalUploadImageImce.php \Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin\DrupalUploadImageImce::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/DrupalUploadImageImce.php, line 102
Contains \Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin\DrupalUploadImageImce.

Class

DrupalUploadImageImce
Defines the "templates" plugin.

Namespace

Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin

Code

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