HEX
Server: Apache
System: Linux ns308404 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: root (0)
PHP: 8.3.31
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/onlinedev.com/httpdocs/admin/include/tiny_mce/plugins/save/editor_plugin_src.js
/* Import plugin specific language pack */
tinyMCE.importPluginLanguagePack('save', 'en,tr,sv,zh_cn,cs,fa,fr_ca,fr,de,pl,pt_br,nl,he,nb,hu,ru,ru_KOI8-R,ru_UTF-8,nn,fi,da,es,cy,is,zh_tw,zh_tw_utf8,sk');

function TinyMCE_save_getInfo() {
	return {
		longname : 'Save',
		author : 'Moxiecode Systems',
		authorurl : 'http://tinymce.moxiecode.com',
		infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_save.html',
		version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
	};
};

/**
 * Returns the HTML contents of the save control.
 */
function TinyMCE_save_getControlHTML(control_name) {
	switch (control_name) {
		case "save":
			var cmd = 'tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mceSave\');return false;';
			return '<a href="javascript:' + cmd + '" onclick="' + cmd + '" target="_self" onmousedown="return false;"><img id="{$editor_id}_save" src="{$pluginurl}/images/save.gif" title="{$lang_save_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.switchClass(this,\'mceButtonNormal\');" onmousedown="tinyMCE.switchClass(this,\'mceButtonDown\');" /></a>';
	}

	return "";
}

/**
 * Executes the save command.
 */
function TinyMCE_save_execCommand(editor_id, element, command, user_interface, value) {
	// Handle commands
	switch (command) {
		case "mceSave":
			var inst = tinyMCE.selectedInstance;
			var formObj = inst.formElement.form;

			if (tinyMCE.getParam("save_enablewhendirty") && !inst.isDirty())
				return true;

			if (formObj) {
				tinyMCE.triggerSave();

				// Use callback instead
				var os;
				if ((os = tinyMCE.getParam("save_onsavecallback"))) {
					if (eval(os + '(inst);')) {
						inst.startContent = tinyMCE.trim(inst.getBody().innerHTML);
						/*inst.undoLevels = new Array();
						inst.undoIndex = 0;
						inst.typingUndoIndex = -1;
						inst.undoRedo = true;
						inst.undoLevels[inst.undoLevels.length] = inst.startContent;*/
						tinyMCE.triggerNodeChange(false, true);
					}

					return true;
				}

				// Disable all UI form elements that TinyMCE created
				for (var i=0; i<formObj.elements.length; i++) {
					var elementId = formObj.elements[i].name ? formObj.elements[i].name : formObj.elements[i].id;

					if (elementId.indexOf('mce_editor_') == 0)
						formObj.elements[i].disabled = true;
				}

				tinyMCE.isNotDirty = true;

				if (formObj.onsubmit == null || formObj.onsubmit() != false)
					inst.formElement.form.submit();
			} else
				alert("Error: No form element found.");

			return true;
	}
	// Pass to next handler in chain
	return false;
};

function TinyMCE_save_handleNodeChange(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
	if (tinyMCE.getParam("save_enablewhendirty")) {
		var inst = tinyMCE.getInstanceById(editor_id);

		tinyMCE.switchClassSticky(editor_id + '_save', 'mceButtonDisabled', true);

		if (inst.isDirty())
			tinyMCE.switchClassSticky(editor_id + '_save', 'mceButtonNormal', false);
	}

	return true;
}