47 Zeilen
Kein EOL
1,2 KiB
PHP
47 Zeilen
Kein EOL
1,2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* define needed var for conlite setup
|
|
*
|
|
* @package ConLite
|
|
* @subpackage Setup
|
|
* @version 1.0.0
|
|
* @author Ortwin Pinke <oldperl@ortwinpinke.de>
|
|
* @author Murat Purc <murat@purc.de>
|
|
* @copyright (c) 2020, ConLite.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.de.html GNU General Public License 3
|
|
* @link https://conlite.org ConLite Portal
|
|
* @since file available since contenido release <= 4.8.15
|
|
*
|
|
*/
|
|
|
|
if (!defined('CON_FRAMEWORK')) {
|
|
die('Illegal call');
|
|
}
|
|
|
|
if (array_key_exists('setuptype', $_SESSION)) {
|
|
switch ($_SESSION['setuptype']) {
|
|
case 'setup':
|
|
define('C_SETUP_STEPS', 8);
|
|
break;
|
|
case 'upgrade':
|
|
define('C_SETUP_STEPS', 7);
|
|
break;
|
|
case 'migration':
|
|
define('C_SETUP_STEPS', 8);
|
|
break;
|
|
}
|
|
}
|
|
|
|
define('C_SETUP_STEPFILE', 'images/steps/s%d.png');
|
|
define('C_SETUP_STEPFILE_ACTIVE', 'images/steps/s%da.png');
|
|
define('C_SETUP_STEPWIDTH', 28);
|
|
define('C_SETUP_STEPHEIGHT', 28);
|
|
define('C_SETUP_MIN_PHP_VERSION', '7.4.0');
|
|
define('C_SETUP_MAX_PHP_VERSION', '8.4.0');
|
|
define('C_SETUP_VERSION', '3.0.0');
|
|
|
|
$sDefLocalPath = __DIR__.DIRECTORY_SEPARATOR.'defines.local.php';
|
|
if(file_exists($sDefLocalPath)) {
|
|
include_once $sDefLocalPath;
|
|
} |