33 lines
807 B
PHP
33 lines
807 B
PHP
<?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;
|
|
}
|
|
}
|