
| Current Path : /var/www/html1/bbp/web/core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/bbp/web/core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaCss.php |
<?php
namespace Drupal\ckeditor_test\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginButtonsInterface;
use Drupal\ckeditor\CKEditorPluginCssInterface;
use Drupal\editor\Entity\Editor;
/**
* Defines a "LlamaCss" plugin, with an associated "llama" CSS.
*
* @CKEditorPlugin(
* id = "llama_css",
* label = @Translation("Llama CSS")
* )
*/
class LlamaCss extends Llama implements CKEditorPluginButtonsInterface, CKEditorPluginCssInterface {
/**
* {@inheritdoc}
*/
public function getButtons() {
return [
'LlamaCSS' => [
'label' => t('Insert Llama CSS'),
],
];
}
/**
* {@inheritdoc}
*/
public function getCssFiles(Editor $editor) {
return [
drupal_get_path('module', 'ckeditor_test') . '/css/llama.css',
];
}
/**
* {@inheritdoc}
*/
public function getFile() {
return drupal_get_path('module', 'ckeditor_test') . '/js/llama_css.js';
}
}