public function DrupalImage::getLibraries in Gutenberg 8
Same name and namespace in other branches
- 8.2 src/Plugin/GutenbergPlugin/DrupalImage.php \Drupal\gutenberg\Plugin\GutenbergPlugin\DrupalImage::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 GutenbergPluginBase::getLibraries
File
- src/
Plugin/ GutenbergPlugin/ DrupalImage.php, line 31
Class
- DrupalImage
- Defines the "drupalimage" plugin.
Namespace
Drupal\gutenberg\Plugin\GutenbergPluginCode
public function getLibraries(Editor $editor) {
return [
'core/drupal.ajax',
];
}