58ddb97d87
Added schedules Added management classes for a node Added clientopts to nodes Added schedule and event information
100 lines
3.7 KiB
PHP
100 lines
3.7 KiB
PHP
<table width="100%">
|
|
<tr>
|
|
<td style="width: 50%; vertical-align: top;">
|
|
<table class="box-full">
|
|
<tr>
|
|
<td class="head" colspan="2">Backup Information</td>
|
|
</tr>
|
|
<?php if ($node->getStoragePools('Bkup')) { ?>
|
|
<tr>
|
|
<td class="spacer"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>File Space</td>
|
|
<td>Last Date</td>
|
|
<td style="text-align: right;">Utilisation</td>
|
|
<?php foreach (Kohana::config('config.tsmpooltypes') as $type)
|
|
if (count($pools = $node->getStoragePoolsType('Bkup',$type)))
|
|
foreach ($pools as $pool_name) { ?>
|
|
<td style="text-align: right;"><?php echo $pool_name; ?> <span style="vertical-align: super; font-size: 60%;"><?echo $type; ?></span></td>
|
|
<?php } ?>
|
|
</tr>
|
|
<?php $i=0;foreach ($node->FILESPACE->find_all() as $fso) { ?>
|
|
<tr class="<?php echo $i++%2 ? 'odd' : 'even'; ?>">
|
|
<td class="head"><?php echo $fso->display('FILESPACE_NAME'); ?></td>
|
|
<td class="head"><?php echo $fso->display('BACKUP_END'); ?></td>
|
|
<td class="head" style="text-align: right;"><?php echo number_format($fso->utilsation(),2); ?></td>
|
|
<?php foreach (Kohana::config('config.tsmpooltypes') as $type)
|
|
if (count($pools = $node->getStoragePoolsType('Bkup',$type)))
|
|
foreach ($pools as $pool_name) { ?>
|
|
<td class="head" style="text-align: right; vertical-align: top;"><?php echo number_format($fso->pool_logical_util($pool_name,'Bkup'),2); ?> (<?php echo $fso->pool_numvols($pool_name,'BACKUP'); ?>)</td>
|
|
<?php } ?>
|
|
</tr>
|
|
<?php } ?>
|
|
<?php } else { ?>
|
|
<tr><td>There is NO Backup Data for this Node.</td></tr>
|
|
<?php } ?>
|
|
</table>
|
|
</td>
|
|
<td style="width: 50%; vertical-align: top;" rowspan="2">
|
|
<table class="box-full">
|
|
<tr>
|
|
<td class="head" colspan="2">Storage Summary</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="spacer"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>Storage Type</td>
|
|
<td>Files</td>
|
|
<td>MB</td>
|
|
</tr>
|
|
<?php $i=0; foreach (Kohana::config('config.tsmpooltypes') as $type) { ?>
|
|
<tr class="<?php echo $i++%2 ? 'odd' : 'even'; ?>">
|
|
<td class="head"><?php echo $type; ?></td>
|
|
<td class="head"><?php echo $node->getStorageTypeFiles($type); ?></td>
|
|
<td class="head"><?php echo $node->getStorageTypeData($type); ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="width: 50%; vertical-align: top;">
|
|
<table class="box-full">
|
|
<tr>
|
|
<td class="head" colspan="2">Archive Information</td>
|
|
</tr>
|
|
<?php if ($node->getStoragePools('Arch')) { ?>
|
|
<tr>
|
|
<td class="spacer"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td>File Space</td>
|
|
<?php foreach (Kohana::config('config.tsmpooltypes') as $type)
|
|
if (count($pools = $node->getStoragePoolsType('Arch',$type)))
|
|
foreach ($pools as $pool_name) { ?>
|
|
<td style="text-align: right;"><?php echo $pool_name; ?> <span style="vertical-align: super; font-size: 60%;"><?echo $type; ?></span></td>
|
|
<?php } ?>
|
|
</tr>
|
|
<?php $i=0;foreach ($node->FILESPACE->find_all() as $fso) { ?>
|
|
<tr class="<?php echo $i++%2 ? 'odd' : 'even'; ?>">
|
|
<td class="head"><?php echo $fso->display('FILESPACE_NAME'); ?></td>
|
|
<?php foreach (Kohana::config('config.tsmpooltypes') as $type)
|
|
if (count($pools = $node->getStoragePoolsType('Arch',$type)))
|
|
foreach ($pools as $pool_name) { ?>
|
|
<td class="head" style="text-align: right; vertical-align: top;"><?php echo number_format($fso->pool_logical_util($pool_name,'Arch'),2); ?> (<?php echo $fso->pool_numvols($pool_name,'ARCHIVE'); ?>)</td>
|
|
<?php } ?>
|
|
</tr>
|
|
<?php } ?>
|
|
<?php } else { ?>
|
|
<tr><td>There is NO Archive Data for this Node.</td></tr>
|
|
<?php } ?>
|
|
</table>
|
|
</td>
|
|
<td style="width: 50%; vertical-align: top;">
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|