public function Anchor::getDependencies in Panopoly 8.2
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 CKEditorPluginBase::getDependencies
File
- modules/
panopoly/ panopoly_wysiwyg/ src/ Plugin/ CKEditorPlugin/ Anchor.php, line 55
Class
- Anchor
- Defines the "panopoly_wysiwyg_anchor" plugin.
Namespace
Drupal\panopoly_wysiwyg\Plugin\CKEditorPluginCode
public function getDependencies(Editor $editor) {
return [
'fakeobjects',
];
}