function Llama::getDependencies in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/Llama.php \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama::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.
Overrides CKEditorPluginInterface::getDependencies
File
- core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ Llama.php, line 36 - Contains \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama.
Class
- Llama
- Defines the "Llama" plugin, with a CKEditor "llama" feature.
Namespace
Drupal\ckeditor_test\Plugin\CKEditorPluginCode
function getDependencies(Editor $editor) {
return array();
}