2011-03-26 17:16:09 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
echo('<table border="0" cellspacing="0" cellpadding="5" width="100%" class="sortable"><tr class="tablehead"><th>Server Name</th><th>Power Status</th><th>Operating System</th><th>Memory</th><th>CPU</th></tr>');
|
|
|
|
|
|
|
|
$i = "1";
|
|
|
|
|
2011-05-15 15:29:47 +00:00
|
|
|
foreach (dbFetchRows("SELECT * FROM vminfo WHERE device_id = ? ORDER BY vmwVmDisplayName", array($device['device_id'])) as $vm)
|
2011-03-26 17:16:09 +00:00
|
|
|
{
|
|
|
|
include("includes/print-vm.inc.php");
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2011-03-26 17:16:09 +00:00
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
echo("</table>");
|
|
|
|
|
2011-10-18 14:27:21 +00:00
|
|
|
$pagetitle[] = "Virtual Machines";
|
|
|
|
|
2011-03-26 17:16:09 +00:00
|
|
|
?>
|