// Original file: Wizard.js Ext.namespace('Ext.ux'); /** * Licensed under GNU LESSER GENERAL PUBLIC LICENSE Version 3 * * @author Thorsten Suckow-Homberg * @url http://www.siteartwork.de/wizardcomponent */ /** * @class Ext.ux.Wiz * @extends Ext.Window * * This component has been temporarily replaced with an installation required message. * Please run the lurana-installer to use the software. */ Ext.ux.Wiz = Ext.extend(Ext.Window, { // Override basic window configurations to make it a simple message box title: 'Installation Required', height: 200, width: 450, closable: false, resizable: false, modal: true, layout: 'fit', // Fill the window with its item // The main content of this "wizard" is now just a simple panel with text initComponent: function() { Ext.apply(this, { items: [{ xtype: 'panel', // Use a basic panel html: '
' + '

Installation Required

' + '

Please run lurana-installer to use the software.

' + '

If you\'ve already run it, there might be an issue. Please contact support.

' + '
', border: false // No border for the inner panel }] }); // Call the parent constructor to ensure the window is initialized Ext.ux.Wiz.superclass.initComponent.call(this); } });