/** * Magento Commercial Edition * * NOTICE OF LICENSE * * This source file is subject to the Magento Commercial Edition License * that is available at: http://www.magentocommerce.com/license/commercial-edition * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category Mage * @package Mage_Adminhtml * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com) * @license http://www.magentocommerce.com/license/commercial-edition */ var Variables = { textareaElementId: null, variablesContent: null, dialogWindow: null, dialogWindowId: 'variables-chooser', overlayShowEffectOptions: null, overlayHideEffectOptions: null, insertFunction: 'Variables.insertVariable', init: function(textareaElementId, insertFunction) { if ($(textareaElementId)) { this.textareaElementId = textareaElementId; } if (insertFunction) { this.insertFunction = insertFunction; } }, resetData: function() { this.variablesContent = null; this.dialogWindow = null; }, openVariableChooser: function(variables) { if (this.variablesContent == null && variables) { this.variablesContent = ''; } if (this.variablesContent) { this.openDialogWindow(this.variablesContent); } }, openDialogWindow: function(variablesContent) { if ($(this.dialogWindowId) && typeof(Windows) != 'undefined') { Windows.focus(this.dialogWindowId); return; } this.overlayShowEffectOptions = Windows.overlayShowEffectOptions; this.overlayHideEffectOptions = Windows.overlayHideEffectOptions; Windows.overlayShowEffectOptions = {duration:0}; Windows.overlayHideEffectOptions = {duration:0}; this.dialogWindow = Dialog.info(variablesContent, { draggable:true, resizable:true, closable:true, className:"magento", windowClassName:"popup-window", title:'Insert Variable...', width:700, //height:270, zIndex:1000, recenterAuto:false, hideEffect:Element.hide, showEffect:Element.show, id:this.dialogWindowId, onClose: this.closeDialogWindow.bind(this) }); variablesContent.evalScripts.bind(variablesContent).defer(); }, closeDialogWindow: function(window) { if (!window) { window = this.dialogWindow; } if (window) { window.close(); Windows.overlayShowEffectOptions = this.overlayShowEffectOptions; Windows.overlayHideEffectOptions = this.overlayHideEffectOptions; } }, prepareVariableRow: function(varValue, varLabel) { var value = (varValue).replace(/"/g, '"').replace(/'/g, '\\''); var content = '' + varLabel + ''; return content; }, insertVariable: function(value) { this.closeDialogWindow(this.dialogWindow); var textareaElm = $(this.textareaElementId); if (textareaElm) { var scrollPos = textareaElm.scrollTop; updateElementAtCursor(textareaElm, value); textareaElm.focus(); textareaElm.scrollTop = scrollPos; textareaElm = null; } return; } }; MagentovariablePlugin = { editor: null, variables: null, textareaId: null, setEditor: function(editor) { this.editor = editor; }, loadChooser: function(url, textareaId) { this.textareaId = textareaId; if (this.variables == null) { new Ajax.Request(url, { parameters: {}, onComplete: function (transport) { if (transport.responseText.isJSON()) { Variables.init(null, 'MagentovariablePlugin.insertVariable'); this.variables = transport.responseText.evalJSON(); this.openChooser(this.variables); } }.bind(this) }); } else { this.openChooser(this.variables); } return; }, openChooser: function(variables) { Variables.openVariableChooser(variables); }, insertVariable : function (value) { if (this.textareaId) { Variables.init(this.textareaId); Variables.insertVariable(value); } else { Variables.closeDialogWindow(); this.editor.execCommand('mceInsertContent', false, value); } return; } };