You are here

public function BUEditor::getLibraries in BUEditor 8.2

Same name and namespace in other branches
  1. 8 src/Plugin/Editor/BUEditor.php \Drupal\bueditor\Plugin\Editor\BUEditor::getLibraries()

Returns libraries to be attached.

Because this is a method, plugins can dynamically choose to attach a different library for different configurations, instead of being forced to always use the same method.

Parameters

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

Return value

array An array of libraries that will be added to the page for use by this text editor.

Overrides EditorPluginInterface::getLibraries

See also

\Drupal\Core\Render\AttachmentsResponseProcessorInterface::processAttachments()

EditorManager::getAttachments()

File

src/Plugin/Editor/BUEditor.php, line 100

Class

BUEditor
Defines BUEditor as an Editor plugin.

Namespace

Drupal\bueditor\Plugin\Editor

Code

public function getLibraries(Editor $editor) {
  $bueditor_editor = $this
    ->getBUEditorEditor($editor);
  return $bueditor_editor ? $bueditor_editor
    ->getLibraries($editor) : [];
}