加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
module.php 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
铅笔刀 提交于 2020-12-12 05:46 . 'init'
<?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('应用入口文件缺失,请联系开发者处理!');
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化