You are here

public function CKEditorPluginBase::isInternal in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/ckeditor/src/CKEditorPluginBase.php \Drupal\ckeditor\CKEditorPluginBase::isInternal()
  2. 10 core/modules/ckeditor/src/CKEditorPluginBase.php \Drupal\ckeditor\CKEditorPluginBase::isInternal()

Indicates if this plugin is part of the optimized CKEditor build.

Plugins marked as internal are implicitly loaded as part of CKEditor.

Return value

bool

Overrides CKEditorPluginInterface::isInternal

4 methods override CKEditorPluginBase::isInternal()
DrupalMediaLibrary::isInternal in core/modules/media_library/src/Plugin/CKEditorPlugin/DrupalMediaLibrary.php
Indicates if this plugin is part of the optimized CKEditor build.
Internal::isInternal in core/modules/ckeditor/src/Plugin/CKEditorPlugin/Internal.php
Indicates if this plugin is part of the optimized CKEditor build.
Language::isInternal in core/modules/ckeditor/src/Plugin/CKEditorPlugin/Language.php
Indicates if this plugin is part of the optimized CKEditor build.
StylesCombo::isInternal in core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php
Indicates if this plugin is part of the optimized CKEditor build.

File

core/modules/ckeditor/src/CKEditorPluginBase.php, line 36

Class

CKEditorPluginBase
Defines a base CKEditor plugin implementation.

Namespace

Drupal\ckeditor

Code

public function isInternal() {
  return FALSE;
}