AVRIL_START_JANCOKALIVEAVRIL_END_JANCOK
| Server IP : dzynews.com / Your IP : 216.73.217.105 Web Server : nginx/1.30.3 System : Linux cloud-tdkldl-avd6 5.15.0-91-generic #101-Ubuntu SMP Tue Nov 14 13:30:08 UTC 2023 x86_64 User : www ( 1000) PHP Version : 8.2.31 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/dzynews.com/wp-content/themes/archive-document/Modules/Common/ |
Upload File : |
<?php
namespace B2\Modules\Common;
class Main
{
public function init()
{
//插件兼容
$PluginsSupport = new PluginsSupport();
$PluginsSupport->init();
//用户登录与注册
$login = new Login();
$login->init();
//用户相关
$user = new User();
$user->init();
//文件上传
$fileUpload = new FileUpload();
$fileUpload->init();
//语音合成
// $radio = new Radio();
// $radio->init();
//重写网址
$rewrite = new Rewrite();
$rewrite->init();
//文章相关
$post = new Post();
$post->init();
//短代码
$shortcode = new Shortcode();
$shortcode->init();
//评论相关函数
$comment = new Comment();
$comment->init();
//播放器
$Player = new Player();
$Player->init();
//seo
$seo = new Seo();
$seo->init();
//订单管理
$orders = new Orders();
$orders->init();
//消息
$message = new Message();
$message->init();
//任务
$task = new Task();
$task->init();
//任务
$ask = new Ask();
$ask->init();
//分销
$distribution = new Distribution();
$distribution->init();
//rest api
$resapi = new RestApi();
$resapi->init();
$cache = new Cache();
$cache->init();
$msg = new Msg();
$msg->init();
$report = new Report();
$report->init();
}
}