public function CodeMirror::getLibraries in CKEditor CodeMirror 8
Same name and namespace in other branches
- 8.2 src/Plugin/CKEditorPlugin/CodeMirror.php \Drupal\ckeditor_codemirror\Plugin\CKEditorPlugin\CodeMirror::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 CKEditorPluginBase::getLibraries
File
- src/
Plugin/ CKEditorPlugin/ CodeMirror.php, line 39
Class
- CodeMirror
- Defines the "CodeMirror" plugin.
Namespace
Drupal\ckeditor_codemirror\Plugin\CKEditorPluginCode
public function getLibraries(Editor $editor) {
return [];
}