コード例 #1
0
ファイル: ui.php プロジェクト: alpacaaa/simpledb-backup
?>
</span> servers
		</span>

		<span style="float: right;">
			<a class="add" href="manage.php">Add a new server</a>
			<a class="manage" href="manage.php#manage">Manage servers</a>
		</span>
		<div style="clear: both;"></div>
	</div>
	<h1>Backup Status</h1>
	<ul>
	<?php 
$i = 1;
foreach ($dirs as $dir) {
    $integrity->setDir($dir);
    $domain = $integrity->check();
    $success = true;
    $date = current($domain)->date;
    reset($domain);
    foreach ($domain as $file => $obj) {
        if ($obj->success !== true) {
            $success = false;
            $date = $obj->date;
            break;
        }
    }
    ?>
		<li class="<?php 
    echo $success == true ? $css['ok'] : $css['error'];
    ?>