BalloonPanelPlugin.php in CKEditor Balloon Panel 7
File
src/Plugin/CKEditorPlugin/BalloonPanelPlugin.php
View source
<?php
namespace Drupal\ckeditor_balloonpanel\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginBase;
use Drupal\editor\Entity\Editor;
class BalloonPanelPlugin extends CKEditorPluginBase {
public function getFile() {
return base_path() . 'libraries/balloonpanel/plugin.js';
}
public function getConfig(Editor $editor) {
return [];
}
public function getButtons() {
return [];
}
}