plugin.js 635 B

123456789101112131415161718192021
  1. ( function() {
  2. CKEDITOR.plugins.add('etranmore',
  3. {
  4. init: function(editor)
  5. {
  6. //plugin code goes here
  7. var pluginName = 'etranmore';
  8. CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/etranmore.js');
  9. editor.addCommand(pluginName, new CKEDITOR.dialogCommand(pluginName));
  10. editor.ui.addButton('etranmore',
  11. {
  12. label: '上传多图片',
  13. command: pluginName,
  14. icon: this.path + 'images/tranmore.gif',
  15. toolbar: 'etranmore'
  16. });
  17. }
  18. })
  19. } )();