public function CKEditorPluginInterface::getDependencies in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/ckeditor/src/CKEditorPluginInterface.php \Drupal\ckeditor\CKEditorPluginInterface::getDependencies()
Returns a list of plugins this plugin requires.
Parameters
\Drupal\editor\Entity\Editor $editor: A configured text editor object.
Return value
array An unindexed array of plugin names this plugin requires. Each plugin is is identified by its annotated ID.
3 methods override CKEditorPluginInterface::getDependencies()
- CKEditorPluginBase::getDependencies in core/
modules/ ckeditor/ src/ CKEditorPluginBase.php - Returns a list of plugins this plugin requires.
- DrupalImageCaption::getDependencies in core/
modules/ ckeditor/ src/ Plugin/ CKEditorPlugin/ DrupalImageCaption.php - Returns a list of plugins this plugin requires.
- Llama::getDependencies in core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ Llama.php - Returns a list of plugins this plugin requires.
File
- core/
modules/ ckeditor/ src/ CKEditorPluginInterface.php, line 56 - Contains \Drupal\ckeditor\CKEditorPluginInterface.
Class
- CKEditorPluginInterface
- Defines an interface for (loading of) CKEditor plugins.
Namespace
Drupal\ckeditorCode
public function getDependencies(Editor $editor);