<?php
// ============================================================
// 加载解密加载器
// ============================================================
require_once(__DIR__ . '/system/decrypt_loader.php');

// Version
define('VERSION', '4.1.0.0');

// Configuration
if (is_file('config.php')) {
    require_once('config.php');
}

// Install
if (!defined('DIR_APPLICATION')) {
    header('Location: install/index.php');
    exit();
}

// Startup - 使用解密加载
decrypt_require(DIR_SYSTEM . 'startup.php');

// Framework - 使用解密加载
decrypt_require(DIR_SYSTEM . 'framework.php');