mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-29 22:01:38 +08:00
* 更新版本号 * 完善后台今日统计,增加权限白名单,增加后台首页菜单,调整后台登录页样式 * Merge branch 'koogua/I1XFCF' of https://gitee.com/koogua/course-tencen… * 前台学习资料部分完成 * !2 后台运营统计合并 * 后台学习资料部分完成
21 lines
293 B
PHP
21 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Library;
|
|
|
|
class AppInfo
|
|
{
|
|
|
|
protected $name = '酷瓜云课堂';
|
|
|
|
protected $alias = 'CTC';
|
|
|
|
protected $link = 'https://gitee.com/koogua';
|
|
|
|
protected $version = '1.1.0';
|
|
|
|
public function __get($name)
|
|
{
|
|
return $this->{$name} ?? null;
|
|
}
|
|
|
|
} |