Add container overview page
parent
b245d86123
commit
a639e71555
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* CVM is more free software. It is licensed under the WTFPL, which
|
||||
* allows you to do pretty much anything with it, without having to
|
||||
* ask permission. Commercial use is allowed, and no attribution is
|
||||
* required. We do politely request that you share your modifications
|
||||
* to benefit other developers, but you are under no enforced
|
||||
* obligation to do so :)
|
||||
*
|
||||
* Please read the accompanying LICENSE document for the full WTFPL
|
||||
* licensing text.
|
||||
*/
|
||||
|
||||
$sContainerList = array();
|
||||
|
||||
if($result = mysql_query_cached("SELECT * FROM containers"))
|
||||
{
|
||||
foreach($result->data as $row)
|
||||
{
|
||||
$sContainer = new Container($row);
|
||||
|
||||
$sContainerList[] = array(
|
||||
'id' => $sContainer->sId,
|
||||
'hostname' => $sContainer->sHostname,
|
||||
'node' => $sContainer->sNode->sName,
|
||||
'node-hostname' => $sContainer->sNode->sHostname,
|
||||
'template' => $sContainer->sTemplate->sName,
|
||||
'diskspace' => number_format($sContainer->sDiskSpace / 1024),
|
||||
'diskspace-unit' => "GB",
|
||||
'guaranteed-ram' => $sContainer->sGuaranteedRam,
|
||||
'guaranteed-ram-unit' => "MB",
|
||||
'status' => $sContainer->sStatusText,
|
||||
'virtualization-type' => $sContainer->sVirtualizationType
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$sPageContents = Templater::InlineRender("admin.containers", $locale->strings, array(
|
||||
'containers' => $sContainerList
|
||||
));
|
@ -0,0 +1,52 @@
|
||||
<h2><%!title-admin-containerlist></h2>
|
||||
|
||||
<table class="vpslist">
|
||||
<tr>
|
||||
<th></th>
|
||||
<th><%!list-column-hostname></th>
|
||||
<th><%!list-column-platform></th>
|
||||
<th><%!list-column-disk></th>
|
||||
<th><%!list-column-ram></th>
|
||||
<th><%!list-column-template></th>
|
||||
</tr>
|
||||
<%foreach container in containers>
|
||||
<tr class="clickable" data-url="/<%?container[id]>/">
|
||||
<td class="container-status">
|
||||
<%if container[status] == running>
|
||||
<img src="/images/icon_online.png" alt="<%!list-status-running>">
|
||||
<%/if><%if container[status] == stopped>
|
||||
<img src="/images/icon_offline.png" alt="<%!list-status-stopped>">
|
||||
<%/if><%if container[status] == suspended>
|
||||
<img src="/images/icon_suspended.png" alt="<%!list-status-suspended>">
|
||||
<%/if>
|
||||
</td>
|
||||
<td>
|
||||
<a href="/<%?container[id]>/">
|
||||
<%?container[hostname]>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="/<%?container[id]>/">
|
||||
<%if container[virtualization-type] == 1>
|
||||
OpenVZ
|
||||
<%/if><%if container[virtualization-type] == 2>
|
||||
Xen PV
|
||||
<%/if><%if container[virtualization-type] == 3>
|
||||
Xen HVM
|
||||
<%/if><%if container[virtualization-type] == 4>
|
||||
KVM
|
||||
<%/if>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<%?container[diskspace]>
|
||||
<span class="unit"><%?container[diskspace-unit]></span>
|
||||
</td>
|
||||
<td>
|
||||
<%?container[guaranteed-ram]>
|
||||
<span class="unit"><%?container[guaranteed-ram-unit]></span>
|
||||
</td>
|
||||
<td><%?container[template]></td>
|
||||
</tr>
|
||||
<%/foreach>
|
||||
</table>
|
Loading…
Reference in New Issue