最新服务器上的版本,以后用这个
zhangmeng
2023-04-19 e3f5aa12f58d986098a9de0f5cb38060e403036d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
error_reporting(E_ALL & ~E_NOTICE);
defined('IN_IA') or exit('Access Denied');
 
class Zjhj_bdModule extends WeModule
{
    public function welcomeDisplay()
    {
        $entry = '/web/index.php';
        if (file_exists(__DIR__ . $entry)) {
            global $_W;
            $wUser = [
                'uid' => $_W['user']['uid'],
                'name' => $_W['user']['name'],
                'username' => $_W['user']['username'],
            ];
            $wAccount = [
                'acid' => $_W['account']['acid'],
                'name' => $_W['account']['name'],
            ];
 
            if ($wUser['name'] === null || $wUser['name'] === '') $wUser['name'] = $wUser['username'];
 
            require __DIR__ . '/vendor/autoload.php';
            $app = new app\core\WebApplication();
 
            $app->session->set('we7_user', $wUser);
            $app->session->set('we7_account', $wAccount);
 
            $uri = $_W['siteroot'] . 'addons/' . $_W['current_module']['name'] . $entry . '?r=mall/we7-entry/login';
            header('Location: ' . $uri);
            die();
        } else {
            die('应用入口文件缺失,请联系开发者处理!');
        }
    }
}