class LlamaCss in Drupal 10
Same name and namespace in other branches
- 8 core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaCss.php \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaCss
- 9 core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaCss.php \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaCss
Defines a "LlamaCss" plugin, with an associated "llama" CSS.
Plugin annotation
@CKEditorPlugin(
id = "llama_css",
label = @Translation("Llama CSS")
)
Hierarchy
- class \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaCss extends \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama implements CKEditorPluginButtonsInterface, CKEditorPluginCssInterface
Expanded class hierarchy of LlamaCss
File
- core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ LlamaCss.php, line 17
Namespace
Drupal\ckeditor_test\Plugin\CKEditorPluginView source
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 [
$this->moduleList
->getPath('ckeditor_test') . '/css/llama.css',
];
}
/**
* {@inheritdoc}
*/
public function getFile() {
return $this->moduleList
->getPath('ckeditor_test') . '/js/llama_css.js';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CKEditorPluginInterface:: |
public | function | Returns the additions to CKEDITOR.config for a specific CKEditor instance. | |
CKEditorPluginInterface:: |
public | function | Returns a list of plugins this plugin requires. | |
CKEditorPluginInterface:: |
public | function | Returns a list of libraries this plugin requires. | |
CKEditorPluginInterface:: |
public | function | Indicates if this plugin is part of the optimized CKEditor build. | |
LlamaCss:: |
public | function |
Returns the buttons that this plugin provides, along with metadata. Overrides CKEditorPluginButtonsInterface:: |
|
LlamaCss:: |
public | function |
Retrieves enabled plugins' iframe instance CSS files. Overrides CKEditorPluginCssInterface:: |
|
LlamaCss:: |
public | function |
Returns the Drupal root-relative file path to the plugin JavaScript file. Overrides CKEditorPluginInterface:: |
|
PluginInspectionInterface:: |
public | function | Gets the definition of the plugin implementation. | 1 |
PluginInspectionInterface:: |
public | function | Gets the plugin_id of the plugin instance. | 1 |