plugin.js 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /*********************************************************************************************************/
  2. /**
  3. * inserthtml plugin for CKEditor 4.x (Author: gpickin ; email: gpickin@gmail.com)
  4. * version: 2.0
  5. * Released: On 2015-03-10
  6. * Download: http://www.github.com/gpickin/ckeditor-inserthtml
  7. *
  8. *
  9. * Modified from original: inserthtml plugin for CKEditor 3.x (Author: Lajox ; Email: lajox@19www.com)
  10. * mod-version: 1.0
  11. * mod-Released: On 2009-12-11
  12. * mod-Download: http://code.google.com/p/lajox
  13. */
  14. /*********************************************************************************************************/
  15. (function() {
  16. CKEDITOR.plugins.add('inserthtml',
  17. {
  18. init: function( editor ) {
  19. editor.addCommand( 'inserthtml', new CKEDITOR.dialogCommand( 'inserthtmlDialog' ) );
  20. editor.ui.addButton( 'inserthtml', {
  21. label: 'Insert HTML',
  22. command: 'inserthtml',
  23. toolbar: 'insert',
  24. icon : this.path + 'inserthtml.png'
  25. });
  26. CKEDITOR.dialog.add( 'inserthtmlDialog', this.path + 'dialogs/inserthtml.js' );
  27. }
  28. });
  29. })();