You are here

public function DrupalImageStyle::getLibraries in Inline responsive images 8

Same name and namespace in other branches
  1. 7 src/Plugin/CKEditorPlugin/DrupalImageStyle.php \Drupal\inline_responsive_image\Plugin\CKEditorPlugin\DrupalImageStyle::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/DrupalImageStyle.php, line 38

Class

DrupalImageStyle
Defines the "drupalimagestyle" plugin.

Namespace

Drupal\inline_responsive_image\Plugin\CKEditorPlugin

Code

public function getLibraries(Editor $editor) {
  return array(
    'inline_responsive_image/drupal.ckeditor.plugins.drupalimagestyle',
  );
}