public function StylesCombo::isInternal in Drupal 9
Same name and namespace in other branches
- 8 core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php \Drupal\ckeditor\Plugin\CKEditorPlugin\StylesCombo::isInternal()
- 10 core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php \Drupal\ckeditor\Plugin\CKEditorPlugin\StylesCombo::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/ StylesCombo.php, line 23
Class
- StylesCombo
- Defines the "stylescombo" plugin.
Namespace
Drupal\ckeditor\Plugin\CKEditorPluginCode
public function isInternal() {
return TRUE;
}