![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/askdragao.com/wp-content/plugins/sportspress/assets/js/admin/ |
/* global tinymce */ ( function () { tinymce.PluginManager.add( 'sp_shortcodes_button', function( editor, url ) { var ed = tinymce.activeEditor; var groups = ed.getLang( 'sportspress.shortcodes' ).split( "]" ); var menu = new Array(); groups.forEach( function(g) { if ( "" == g ) { return; } var p = g.split( "[" ); var label = p.shift(); var variations = p.shift(); var shortcodes = typeof variations !== 'undefined' ? variations.split( "|" ) : []; var submenu = new Array(); shortcodes.forEach( function(s) { submenu.push( { text: ed.getLang( 'sportspress.' + s ), onclick: function() { // triggers the thickbox var width = jQuery( window ).width(), H = jQuery( window ).height(), W = ( 720 < width ) ? 720 : width; W = W - 80; H = H - 84; tb_show( ed.getLang( 'sportspress.' + label ) + ' - ' + ed.getLang( 'sportspress.' + s ), 'admin-ajax.php?action=sportspress_' + label + '_' + s + '_shortcode&width=' + W + '&height=' + H ); } } ); } ); menu.push( { text: ed.getLang( 'sportspress.' + label ), menu: submenu } ); } ); editor.addButton( 'sp_shortcodes_button', { title: ed.getLang( 'sportspress.insert' ), text: false, icon: false, type: 'menubutton', menu: menu } ); } ); })();