PluginProbe ʕ •ᴥ•ʔ
Shortcoder — Create Shortcodes for Anything / trunk
Shortcoder — Create Shortcodes for Anything vtrunk
trunk 3.0 3.0.1 3.1 3.2 3.3 3.4 3.4.1 4.0 4.0.1 4.0.2 4.0.3 4.1 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 4.1.7 4.1.8 4.1.9 4.2 4.3 4.4 4.5 4.6 5.0 5.0.1 5.0.2 5.0.3 5.0.4 5.1 5.2 5.2.1 5.3 5.3.1 5.3.2 5.3.3 5.3.4 5.4 5.5 5.6 5.7 5.8 6.0 6.1 6.2 6.3 6.3.1 6.3.2 6.4 6.5 6.5.1 6.5.2 6.5.3
shortcoder / admin / js / tinymce / editor_plugin.js
shortcoder / admin / js / tinymce Last commit date
editor_plugin.js 1 month ago
editor_plugin.js
34 lines
1 /*
2 * Shortcoder TinyMCE plugin for inserting Shortcodes
3 */
4
5 (function() {
6
7 tinymce.create( 'tinymce.plugins.SCButton',{
8
9 init : function(ed, url){
10 var url = url.replace('/js/tinymce', '');
11 ed.addButton( 'shortcoder', {
12 title : 'Insert shortcodes created using Shortcoder',
13 image : url + '/images/shortcoder.svg',
14 onclick : function(){
15 if(typeof sc_show_insert !== 'undefined') sc_show_insert();
16 }
17 });
18 },
19
20 getInfo : function(){
21 return {
22 longname : 'Shortcoder',
23 author : 'Aakash Chakravarthy',
24 authorurl : 'https://www.aakashweb.com/',
25 infourl : 'https://www.aakashweb.com/',
26 version : '1.3'
27 };
28 }
29
30 });
31
32 tinymce.PluginManager.add( 'shortcoder', tinymce.plugins.SCButton );
33
34 })();