* Delete execution node view link.
This commit is contained in:
@@ -97,7 +97,7 @@ class executionnodemodel extends model
|
||||
$data->templateID = $data->templateID;
|
||||
$data->hostID = $host->id;
|
||||
$data->macAddress = $macAddress;
|
||||
$data->status = static::STATUS_LAUNCH;
|
||||
$data->status = static::STATUS_RUNNING;
|
||||
$data->createdBy = $this->app->user->account;
|
||||
$data->createdDate = helper::now();
|
||||
$data->osCategory = $vmTemplate->osCategory;
|
||||
@@ -113,7 +113,6 @@ class executionnodemodel extends model
|
||||
|
||||
/* update action log. */
|
||||
$this->loadModel('action')->create('executionnode', $nodeID, 'Created');
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@
|
||||
<?php foreach($nodeList as $node):?>
|
||||
<tr>
|
||||
<td><?php echo $node->id;?></td>
|
||||
<td title="<?php echo $node->name;?>"><?php echo html::a($this->inlink('view', "id=$node->id", 'html', true), $node->name, '',"class='iframe'");?></td>
|
||||
<td title="<?php echo $node->name;?>"><?php echo $node->name;?></td>
|
||||
<td><?php echo $node->hostIP;?></td>
|
||||
<td><?php echo zget($config->executionnode->os->cpu, $node->osCpu);?></td>
|
||||
<td><?php echo zget($config->executionnode->os->memory, $node->osMemory);?></td>
|
||||
|
||||
Reference in New Issue
Block a user