48 lines
1.4 KiB
JavaScript
48 lines
1.4 KiB
JavaScript
/*
|
|
* @Website: apollotheme.com - prestashop template provider
|
|
* @author Apollotheme <apollotheme@gmail.com>
|
|
* @copyright Apollotheme
|
|
* @description:
|
|
*/
|
|
tinymce.PluginManager.add("appagebuilder", function(t, url) {
|
|
t.addButton("appagebuilder", {
|
|
// text: "My button",
|
|
icon: "appagebuilder",
|
|
tooltip: "Ap Shortcode",
|
|
onclick: function() {
|
|
t.windowManager.open({
|
|
title: "Ap Shortcode: Select a shortcode to embed it to the content",
|
|
// body: [{
|
|
// type: "textbox",
|
|
// name: "title",
|
|
// label: "Title",
|
|
|
|
// }],
|
|
url : appagebuilder_listshortcode_url,
|
|
inline : 1,
|
|
width : 900,
|
|
|
|
height : 450
|
|
// onsubmit: function(e) {
|
|
// t.insertContent("Title: " + e.data.title)
|
|
// }
|
|
})
|
|
}
|
|
})
|
|
// t.addMenuItem("appagebuilder", {
|
|
// text: "Example plugin",
|
|
// context: "tools",
|
|
// onclick: function() {
|
|
// t.windowManager.open({
|
|
// title: "TinyMCE site",
|
|
// url: "http://www.tinymce.com",
|
|
// width: 800,
|
|
// height: 600,
|
|
// buttons: [{
|
|
// text: "Close",
|
|
// onclick: "close"
|
|
// }]
|
|
// })
|
|
// }
|
|
// })
|
|
}); |