? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/plugins/editors/jckeditor/plugins/autolaunchfilebrowser/
File Upload :
Current File : /home/admin/public_html/old/plugins/editors/jckeditor/plugins/autolaunchfilebrowser/plugin.js

(function () {


    var fileButtonCount = 0;


    function checkDialog(editor, dialogName, definition, elements) {
        var element;

        for (var i in elements) {
            element = elements[i];


            if (dialogName == 'filebrowser')
                continue;

            if (typeof element == 'function' || element == null || element.type == 'undefined' || element.type == null)
                continue;

            if (element.type && (element.type == 'hbox' || element.type == 'vbox'))
                checkDialog(editor, dialogName, definition, element.children);

            if (!element.filebrowser)
                continue;


            if (typeof element.filebrowser == 'string')
                return; // filebrowser has been disbaled

            if (element.filebrowser.action == 'Browse') {
                fileButtonCount++
            }
        }
    }


    CKEDITOR.plugins.add('autolaunchfilebrowser',
	 {
	     init: function (editor) {
	         var pluginPath = this.path;

	         CKEDITOR.on('instanceReady', function (evt) {
	             var editor = evt.editor;

	             CKEDITOR.on('dialogDefinition', function (evt) {
	                 var dialogName = evt.data.name;

	                 fileButtonCount = 0;

	                 checkDialog(evt.editor, evt.data.name, evt.data.definition, evt.data.definition.contents[0].elements);


	                 var dialogAutolaunchFilebrowser = evt.data.name + 'AutolaunchFilebrowser';

	                 editor.on('dialogShow', function (evt) {
	                     var dialog = evt.data;


	                     if (dialogAutolaunchFilebrowser in editor.config && editor.config[dialogAutolaunchFilebrowser] || !(dialogAutolaunchFilebrowser in editor.config) && editor.config.autolaunchFilebrowser) {
	                         var count = fileButtonCount;

	                         if (count > 1)
	                             return;

	                         if (dialog._.name == 'filebrowser')
	                             return;


	                         if (dialog._.name != dialogName)
	                             return;

	                         var filebutton = dialog.getContentElement(dialog._.tabIdList[0], 'browse');

	                         if (!filebutton)
	                             return;
	                         var targetInfo = filebutton.filebrowser.target.split(':');

	                         var target = dialog.getContentElement(dialog._.tabIdList[0], targetInfo[1]);
	                         if (target && target.getValue())
	                             return;
	                         filebutton.fire('click');
	                     }
	                 });

	             });

	         });
	     }
	 });

})();

T1KUS90T
  root-grov@210.1.60.28:~$