mirror of
https://gh.wpcy.net/https://github.com/netcccyun/easypanel.git
synced 2026-04-22 18:19:32 +08:00
13 lines
No EOL
392 B
PHP
13 lines
No EOL
392 B
PHP
<?php
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
date_default_timezone_set('Asia/Shanghai');
|
|
define('APPLICATON_ROOT', dirname(__FILE__));
|
|
define('SYS_ROOT', dirname(dirname(__FILE__)) . '/framework');
|
|
define('DEFAULT_CONTROL', 'index');
|
|
include SYS_ROOT . '/runtime.php';
|
|
$tpl = TPL::singleton();
|
|
$tpl->assign('title', getTitle());
|
|
loadSetting($tpl);
|
|
startFramework();
|
|
|
|
?>
|