HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/theflexguy.com/apps/silicondesigner/sg/js/vars/Base.js
// BASE FLASH VARS 
define(["../app/Utils"], function(Utils) {

    var flashVars = {
		userId				: getQuerystring("userID", "demo"),
        userPass			: getQuerystring("userPass", "demo!"),
        context				: getQuerystring("context", "demo"),
		templateId			: getQuerystring("templateId", ""),
        instanceId			: getQuerystring("instanceId", ""),
        sdSessionId			: getQuerystring("sdSessionId", ""),
        daoCode				: "remote",
        parserCode			: "remote",
        exporterCode		: "remote",
        ouputRaw			: "output/weblink",
        imagesPath			: "ImageAsset/",
        pageSize			: 18,
		galleryItemsPerPage	: 6,
		owner	            : "demo2",
		variableData		: "null",
		ruleCode			: "Silicon High",
		zoomMin				: 0.25, //zoomMin is the multiplier used for scaleMin
		zoomMax				: 2, //zoomMax is the multiplier used for scaleMax
		zoomIncrement		: 0.25,
		globalFontMapPath	: "assets/fonts/GlobalFontMap_sg.xml",
		fontSizeOptions		: [5,6,7,8,9,10,11,12,14,16,18,21,24,28,32,36,42,48,60,72,88,102,125],
		lazyLoadLayouts		: "false",
		loadLayoutSnapshots	: "true",
		orderQuantity		: 0,
		showMailingPage		: "true",
		fontImagesBaseUrl	: getQuerystring("fontImagesBaseUrl", "assets/fonts/fontImages/")
    }

    BaseVars.prototype.getFlashVars = function(){
        return flashVars;
    };
    
    function BaseVars(){
        return this;
    }
    
    return BaseVars;
    
});