Initial commit

This commit is contained in:
2020-01-18 05:51:45 +08:00
Unverified
commit e0da205b34
1758 changed files with 550610 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace SakuraPanel;
use SakuraPanel;
OB_START();
SESSION_START();
define("ROOT", __DIR__);
include(ROOT . "/configuration.php");
include(ROOT . "/core/Database.php");
include(ROOT . "/core/Regex.php");
include(ROOT . "/core/Utils.php");
include(ROOT . "/core/Settings.php");
include(ROOT . "/core/Smtp.php");
$conn = null;
$db = new SakuraPanel\Database();
include(ROOT . "/core/Pages.php");
include(ROOT . "/core/UserManager.php");
include(ROOT . "/core/NodeManager.php");
include(ROOT . "/core/ProxyManager.php");
include(ROOT . "/core/PostHandler.php");
include(ROOT . "/core/Router.php");