Browse Source

update

tags/3.0 3.0
flucout 2 months ago
parent
commit
99f9a28a73
  1. 6
      app/lib/BtPlugins.php

6
app/lib/BtPlugins.php

@ -36,9 +36,11 @@ class BtPlugins
if(empty($result['list']) || empty($result['type'])){ if(empty($result['list']) || empty($result['type'])){
throw new Exception('获取插件列表失败:插件列表为空'); throw new Exception('获取插件列表失败:插件列表为空');
} }
foreach($result['list'] as $k=>$v){
if(in_array($v['name'], self::$block_plugins)) unset($result['list'][$k]);
$newlist = [];
foreach($result['list'] as $item){
if(!in_array($item['name'], self::$block_plugins)) $newlist[] = $item;
} }
$result['list'] = $newlist;
return $result; return $result;
}else{ }else{
throw new Exception('获取插件列表失败:'.(isset($result['msg'])?$result['msg']:'面板连接失败')); throw new Exception('获取插件列表失败:'.(isset($result['msg'])?$result['msg']:'面板连接失败'));

Loading…
Cancel
Save