You are here

public function CKEditorPluginCssInterface::getCssFiles in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/ckeditor/src/CKEditorPluginCssInterface.php \Drupal\ckeditor\CKEditorPluginCssInterface::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.

4 methods override CKEditorPluginCssInterface::getCssFiles()
DrupalImageCaption::getCssFiles in core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalImageCaption.php
Retrieves enabled plugins' iframe instance CSS files.
DrupalMedia::getCssFiles in core/modules/media/src/Plugin/CKEditorPlugin/DrupalMedia.php
@todo Improve this in https://www.drupal.org/project/drupal/issues/3072063
Language::getCssFiles in core/modules/ckeditor/src/Plugin/CKEditorPlugin/Language.php
Retrieves enabled plugins' iframe instance CSS files.
LlamaCss::getCssFiles in core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaCss.php
Retrieves enabled plugins' iframe instance CSS files.

File

core/modules/ckeditor/src/CKEditorPluginCssInterface.php, line 37

Class

CKEditorPluginCssInterface
Defines an interface for CKEditor plugins with associated CSS.

Namespace

Drupal\ckeditor

Code

public function getCssFiles(Editor $editor);