CKEditor 4 reached its End of Life (EOL) in June 2023. From then on, it will receive no more updates, new features, bug fixes, and security patches. Visit CKEditor 5 Docs for the actively supported CKEditor or check Extended Support Model.
Allows to customize the implementation of printing the editor content provided
by the Print plugin. For example, the official
CKEditor 4 Export to PDF plugin
can be used here (see the installation guide):
// Using an 'Export to PDF' plugin to generate PDF.
CKEDITOR.plugins.print = {
exec: function( editor ) {
editor.execCommand( 'exportPdf' );
}
};