public function LlamaCss::getCssFiles 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::getCssFiles()
- 9 core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaCss.php \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaCss::getCssFiles()
Retrieves enabled plugins' iframe instance CSS files.
Note: this does not use a Drupal asset library because this CSS will be loaded by CKEditor, not by Drupal.
Parameters
\Drupal\editor\Entity\Editor $editor: A configured text editor object.
Return value
string[] An array of CSS files. This is a flat list of file paths relative to the Drupal root.
Overrides CKEditorPluginCssInterface::getCssFiles
File
- core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ LlamaCss.php, line 33
Class
- LlamaCss
- Defines a "LlamaCss" plugin, with an associated "llama" CSS.
Namespace
Drupal\ckeditor_test\Plugin\CKEditorPluginCode
public function getCssFiles(Editor $editor) {
return [
$this->moduleList
->getPath('ckeditor_test') . '/css/llama.css',
];
}