瀏覽代碼

try to use console button

andre 4 年之前
父節點
當前提交
a22d8fc4e0
共有 1 個文件被更改,包括 3 次插入5 次删除
  1. 3 5
      app/UI/Vms/Buttons/ConsoleButton.php

+ 3 - 5
app/UI/Vms/Buttons/ConsoleButton.php

@@ -31,11 +31,9 @@ class ConsoleButton extends ButtonDataTableModalAction implements ClientArea
 
     public function initContent()
     {
-        $redirectButton = new RedirectButton('novnc');
-        $redirectButton->setImageUrl(BuildUrl::getAppAssetsURL() . DS . 'img' . DS . 'buttons' . DS . 'novnc.png');
-        $redirectButton->setHref("#");
-        $redirectButton->setIcon('lu-zmdi lu-zmdi-fullscreen');
-        $this->addButton($redirectButton);
+        $this->setImageUrl(BuildUrl::getAppAssetsURL() . DS . 'img' . DS . 'buttons' . DS . 'novnc.png');
+        $this->setHref("#");
+        $this->setIcon('lu-zmdi lu-zmdi-fullscreen');
         $this->initIds('consoleButton');
         $this->setDisableByColumnValue("vmid", 0);
     }