mirror of
https://github.com/ZeroDream-CN/PHPMC7
synced 2026-05-17 19:12:37 +08:00
7.3.1709 发布
增加更新检测功能,现在可以自动下载最新版本的 PHPMC 了。 修正部分逻辑判断问题。 修改了部分 AJAX 请求超时时间 增加操作过渡动画效果
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?php
|
||||
define("PHPMC_VERSION", "7.2.1926-Beta"); // Don't Change This!
|
||||
define("PHPMC_VERSION", "7.3.1709"); // Don't Change This!
|
||||
include(ROOT . "/include/core/PHPMC/Event.php");
|
||||
include(ROOT . "/include/core/PHPMC/User.php");
|
||||
include(ROOT . "/include/core/PHPMC/Utils.php");
|
||||
@@ -11,6 +11,7 @@ include(ROOT . "/include/core/PHPMC/System.php");
|
||||
include(ROOT . "/include/core/PHPMC/Http.php");
|
||||
include(ROOT . "/include/core/PHPMC/Option.php");
|
||||
include(ROOT . "/include/core/PHPMC/Permission.php");
|
||||
include(ROOT . "/include/core/PHPMC/Update.php");
|
||||
class PHPMC {
|
||||
public static function Event() {
|
||||
return new Event();
|
||||
@@ -44,6 +45,10 @@ class PHPMC {
|
||||
return new Permission();
|
||||
}
|
||||
|
||||
public static function Update() {
|
||||
return new Update();
|
||||
}
|
||||
|
||||
public static function Error() {
|
||||
return new WebError();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user