mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-06 01:52:48 +08:00
24 lines
440 B
PHP
24 lines
440 B
PHP
<?php
|
|
|
|
namespace base\common\event\AdminMenuTab;
|
|
|
|
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('index/ext/admin_menu_tab_demo');
|
|
}
|
|
|
|
// 事件监听处理
|
|
return [
|
|
'view_content' => $content,
|
|
];
|
|
}
|
|
}
|