增加扩展机制定位文件;将common模块实现扩展模式;发布新版本;

This commit is contained in:
2023-09-25 17:07:38 +08:00
parent 3dcf336bbc
commit 184dae8185
65 changed files with 3093 additions and 2751 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace base\common\event\AdminLoginSuccess;
use app\admin\model\SystemAdmin;
use think\facade\Log;
class LogEventBase
{
public function handle(SystemAdmin $system_admin)
{
// 事件监听处理
Log::report("admin login success,{$system_admin->username}");
}
}

View File

@@ -0,0 +1,23 @@
<?php
namespace base\common\event\AdminLoginType;
use think\facade\Env;
use think\facade\View;
class DemoEventBase
{
public function handle()
{
$content = '';
if (Env::get('adminsystem.is_demo', false)) {
$content = View::layout(false)->fetch('login/ext/demo');
}
// 事件监听处理
return [
'view_content' => $content,
];
}
}