You are here

public function TemplateSelector::getLibraries in Wysiwyg API template plugin 8.2

Same name and namespace in other branches
  1. 3.0.x src/Plugin/CKEditorPlugin/TemplateSelector.php \Drupal\wysiwyg_template\Plugin\CKEditorPlugin\TemplateSelector::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 CKEditorPluginBase::getLibraries

File

src/Plugin/CKEditorPlugin/TemplateSelector.php, line 54

Class

TemplateSelector
Defines a WYSIWYG TemplateSelector selector plugin.

Namespace

Drupal\wysiwyg_template\Plugin\CKEditorPlugin

Code

public function getLibraries(Editor $editor) : array {
  return [
    'core/drupal.ajax',
  ];
}