1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 20:52:44 +08:00
xiaochong0302 1bef24f217 1.kg_course表增加索引
2.优化错误页
3.优化富文本内容长度获取
4.优化layer关闭窗口后发布状态同步
2023-09-16 20:51:31 +08:00

35 lines
593 B
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Library;
class AppInfo
{
protected $name = '酷瓜云课堂';
protected $alias = 'CTC';
protected $link = 'https://www.koogua.com';
protected $version = '1.6.7';
public function __get($name)
{
return $this->get($name);
}
public function get($name)
{
if (isset($this->{$name})) {
return $this->{$name};
}
return null;
}
}