Merge branch 'zenops_46_wangjianhua_68708' into zenops_46_wangjianhua_68709

This commit is contained in:
wangjianhua
2022-09-19 15:09:33 +08:00
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -303,7 +303,7 @@ class zahost extends control
* @access public
* @return void
*/
public function ajaxImageList($hostID, $templateID = null)
public function ajaxImageList($hostID, $templateID = 0)
{
$host = $this->zahost->getById($hostID);
$imageList = $this->zahost->getImageList($host, $templateID);
+3 -2
View File
@@ -175,10 +175,11 @@ class zahostModel extends model
* Get image files from ZAgent server.
*
* @param object $host
* @param int $templateID
* @access public
* @return array
*/
public function getImageList($host, $templateID = null)
public function getImageList($host, $templateID = 0)
{
$result = json_decode(commonModel::http("http://{$host->publicIP}:8086/api/v1/kvm/listTmpl?token={$host->secret}"));
if(empty($result) || $result->code != 200)
@@ -197,7 +198,7 @@ class zahostModel extends model
$imageList[] = array('name' => $image->name);
}
/* templateID is not empty means editing template. */
/* Template ID is not empty means editing template. */
if($templateID) foreach($usedImageList as $usedImage) $imageList[] = array('name' => $usedImage->imageName);
return $imageList;