LlamaCss.php
Same filename in other branches
Namespace
Drupal\ckeditor_test\Plugin\CKEditorPluginFile
-
core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ LlamaCss.php
View source
<?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' => $this->t('Insert Llama CSS'),
],
];
}
/**
* {@inheritdoc}
*/
public function getCssFiles(Editor $editor) {
return [
$this->moduleList
->getPath('ckeditor_test') . '/css/llama.css',
];
}
/**
* {@inheritdoc}
*/
public function getFile() {
return $this->moduleList
->getPath('ckeditor_test') . '/js/llama_css.js';
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
LlamaCss | Defines a "LlamaCss" plugin, with an associated "llama" CSS. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.