function UploadImage::getLibraries in CKEditor Upload Image 8
Same name and namespace in other branches
- 8.2 src/Plugin/CKEditorPlugin/UploadImage.php \Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin\UploadImage::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/ UploadImage.php, line 62 - Contains \Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin\UploadImage.
Class
- UploadImage
- Defines the "templates" plugin.
Namespace
Drupal\ckeditor_uploadimage\Plugin\CKEditorPluginCode
function getLibraries(Editor $editor) {
return [];
}