You are here

function CKEditor::getLibraries in CKEditor for WYSIWYG Module 8

Implements \Drupal\editor\Plugin\EditorInterface::getLibraries().

Overrides EditorPluginInterface::getLibraries

File

lib/Drupal/ckeditor/Plugin/editor/editor/CKEditor.php, line 220
Definition of \Drupal\ckeditor\Plugin\editor\editor\CKEditor.

Class

CKEditor
Defines a CKEditor-based text editor for Drupal.

Namespace

Drupal\ckeditor\Plugin\editor\editor

Code

function getLibraries(Editor $editor) {
  return array(
    array(
      'ckeditor',
      'drupal.ckeditor',
    ),
  );
}