CKEditorDiv.php in CKEditor Div Manager 8
File
src/Plugin/CKEditorPlugin/CKEditorDiv.php
View source
<?php
namespace Drupal\ckeditor_div_manager\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginBase;
use Drupal\editor\Entity\Editor;
class CKEditorDiv extends CKEditorPluginBase {
public function getFile() {
return 'libraries/ckeditor/plugins/div/plugin.js';
}
public function getButtons() {
return [
'CreateDiv' => [
'label' => $this
->t('Div Container Manager'),
'image' => 'libraries/ckeditor/plugins/div/icons/creatediv.png',
],
];
}
public function getConfig(Editor $editor) {
return [];
}
}