国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin.js 646B

123456789101112131415161718
  1. CKEDITOR.plugins.add("mimage", {
  2. icons: "mimage",
  3. init: function (a) {
  4. a.addCommand("openMImageDialog",
  5. {
  6. exec: function (a) {
  7. var posLeft = 100; var posTop = 100;
  8. window.open("./dialog/select_mimages.php?f=" + a.name, "popUpImagesWin", "scrollbars=yes,resizable=yes,statebar=no,width=800,height=600,left=" + posLeft + ", top=" + posTop);
  9. }
  10. });
  11. a.ui.addButton("MImage",
  12. {
  13. label: "插入多图",
  14. command: "openMImageDialog",
  15. toolbar: "insert"
  16. })
  17. }
  18. });