feat: add downstream domain fix plugin
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace addons\downstream_domain_fix;
|
||||
|
||||
use app\admin\lib\Plugin;
|
||||
|
||||
class DownstreamDomainFixPlugin extends Plugin
|
||||
{
|
||||
public $info = [
|
||||
'name' => 'DownstreamDomainFix',
|
||||
'title' => '下游推送域名修复',
|
||||
'description' => '批量修改指定客户名下服务器的下游推送域名',
|
||||
'status' => 1,
|
||||
'author' => '<a href=\"https://www.munianyun.com/\">沐念云</a>',
|
||||
'version' => '1.0',
|
||||
'module' => 'addons',
|
||||
'lang' => [
|
||||
'chinese' => '下游推送域名修复',
|
||||
'chinese_tw' => '下游推送域名修復',
|
||||
'english' => 'Downstream Domain Fix',
|
||||
],
|
||||
];
|
||||
|
||||
public function install()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public function uninstall()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user