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