begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
/*
* ThinkSAAS APP入口
* @copyright (c) 2010-3000 ThinkSAAS All Rights Reserved
* @code by QiuJun
* @Email:thinksaas@qq.com
*/
defined('IN_TS') or die('Access Denied.');
if (is_file('app/' . $TS_URL['app'] . '/action/' . $TS_URL['ac'] . '.php')) {
//开始执行APP action
if (is_file('app/' . $TS_URL['app'] . '/action/common.php'))
include 'app/' . $TS_URL['app'] . '/action/common.php';
include 'app/' . $TS_URL['app'] . '/action/' . $TS_URL['ac'] . '.php';
} else {
ts404();
}