bibcite_footnotes-8.x-1.0-beta3/src/Plugin/CKEditor5Plugin/BibciteFootnotes.php
src/Plugin/CKEditor5Plugin/BibciteFootnotes.php
<?php
declare(strict_types=1);
namespace Drupal\bibcite_footnotes\Plugin\CKEditor5Plugin;
use Drupal\ckeditor5\Plugin\CKEditor5PluginConfigurableTrait;
use Drupal\ckeditor5\Plugin\CKEditor5PluginDefault;
use Drupal\ckeditor5\Plugin\CKEditor5PluginConfigurableInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\editor\EditorInterface;
/**
* CKEditor 5 plugin for the citation footnotes.
*/
class BibciteFootnotes extends CKEditor5PluginDefault
{
/**
* {@inheritdoc}
*/
// public function getDynamicPluginConfig(array $static_plugin_config, EditorInterface $editor): array
// {
// return $static_plugin_config;
// }
}
