public function CkeditorTableSelection::getDependencies in CKEditor Table Selection 8
Same name and namespace in other branches
- 9.1.x src/Plugin/CKEditorPlugin/CkeditorTableSelection.php \Drupal\ckeditor_tableselection\Plugin\CKEditorPlugin\CkeditorTableSelection::getDependencies()
- 2.0.x src/Plugin/CKEditorPlugin/CkeditorTableSelection.php \Drupal\ckeditor_tableselection\Plugin\CKEditorPlugin\CkeditorTableSelection::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
- src/
Plugin/ CKEditorPlugin/ CkeditorTableSelection.php, line 99
Class
- CkeditorTableSelection
- Defines the "Table Selection" plugin.
Namespace
Drupal\ckeditor_tableselection\Plugin\CKEditorPluginCode
public function getDependencies(Editor $editor) {
return [];
}