2011-03-26 17:16:09 +00:00
|
|
|
<?php
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
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>';
|
2011-03-26 17:16:09 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$i = '1';
|
2011-03-26 17:16:09 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
foreach (dbFetchRows('SELECT * FROM vminfo WHERE device_id = ? ORDER BY vmwVmDisplayName', array($device['device_id'])) as $vm) {
|
|
|
|
include 'includes/print-vm.inc.php';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$i++;
|
2011-03-26 17:16:09 +00:00
|
|
|
}
|
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
echo '</table>';
|
2011-03-26 17:16:09 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$pagetitle[] = 'Virtual Machines';
|