You are here

public function Language::isInternal in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/ckeditor/src/Plugin/CKEditorPlugin/Language.php \Drupal\ckeditor\Plugin\CKEditorPlugin\Language::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 CKEditorPluginBase::isInternal

File

core/modules/ckeditor/src/Plugin/CKEditorPlugin/Language.php, line 26

Class

Language
Defines the "language" plugin.

Namespace

Drupal\ckeditor\Plugin\CKEditorPlugin

Code

public function isInternal() {
  return TRUE;
}