1<?php 2/** 3 * Copyright (c) 2020. ComboStrap, Inc. and its affiliates. All Rights Reserved. 4 * 5 * This source code is licensed under the GPL license found in the 6 * COPYING file in the root directory of this source tree. 7 * 8 * @license GPL 3 (https://www.gnu.org/licenses/gpl-3.0.en.html) 9 * @author ComboStrap <support@combostrap.com> 10 * 11 */ 12 13use ComboStrap\TplUtility; 14 15/** 16 * The default value don't use false but 1 17 * if you want to use an on/off 18 * because false is the value returned when no configuration is found 19 */ 20 21 22 23/** 24 * CDN for anonymous 25 * See {@link TplUtility::CONF_USE_CDN} 26 */ 27$conf['useCDN'] = 1; 28 29// Print Debug statement 30$conf['debug'] = 1; 31 32 33/** 34 * {@link TplUtility::CONF_BOOTSTRAP_VERSION_STYLESHEET} 35 */ 36$conf["bootstrapVersionStylesheet"] = "5.0.1 - bootstrap"; 37 38$conf['gridColumns'] = 12; 39 40$conf['gridColumns'] = 12; 41 42 43$conf['preloadCss'] = 0; 44 45$conf['preloadCss'] = 0; 46 47/** 48 * {@link TplUtility::CONF_PRIVATE_RAIL_BAR} 49 */ 50$conf['privateRailbar'] = 0; 51/** 52 * {@link TplUtility::CONF_BREAKPOINT_RAIL_BAR} 53 */ 54$conf['breakpointRailbar'] = "large"; 55 56/** 57 * @see {@link TplUtility::CONF_JQUERY_DOKU} 58 */ 59$conf['jQueryDoku'] = 0; 60 61/** 62 * See {@link TplUtility::CONF_DISABLE_BACKEND_JAVASCRIPT} 63 */ 64$conf["disableBackendJavascript"] = 0; 65 66 67 68 69?> 70