mirror of
https://github.com/WenPai-org/wp-china-yes.git
synced 2025-08-03 11:11:30 +08:00
28 lines
400 B
PHP
Executable file
28 lines
400 B
PHP
Executable file
<?php
|
|
|
|
namespace WenPai\ChinaYes\Service;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Class Base
|
|
* 插件主服务
|
|
* @package WenPai\ChinaYes\Service
|
|
*/
|
|
class Base {
|
|
|
|
public function __construct() {
|
|
// 加速服务
|
|
new Super();
|
|
// 监控服务
|
|
new Monitor();
|
|
// 内存服务
|
|
new Memory();
|
|
// 更新服务
|
|
new Update();
|
|
if ( is_admin() ) {
|
|
// 设置服务
|
|
new Setting();
|
|
}
|
|
}
|
|
}
|