|
|
|
@ -26,9 +26,9 @@ if (!empty($listAdded)) { |
|
|
|
<table> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Date</td> |
|
|
|
<th>Filename</td> |
|
|
|
<th>IP</td> |
|
|
|
<th>Date</th> |
|
|
|
<th>Filename</th> |
|
|
|
<th>IP</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
@ -45,7 +45,7 @@ if (!empty($listAdded)) { |
|
|
|
?>
|
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('added'); "> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('dl', 'added'); "> |
|
|
|
</div> |
|
|
|
<?php |
|
|
|
} |
|
|
|
@ -57,9 +57,9 @@ if (!empty($listDownloading)) { |
|
|
|
<table> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Date</td> |
|
|
|
<th>Filename</td> |
|
|
|
<th>IP</td> |
|
|
|
<th>Date</th> |
|
|
|
<th>Filename</th> |
|
|
|
<th>IP</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
@ -87,9 +87,9 @@ if (!empty($listDownloaded)) { |
|
|
|
<table> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Date</td> |
|
|
|
<th>Filename</td> |
|
|
|
<th>IP</td> |
|
|
|
<th>Date</th> |
|
|
|
<th>Filename</th> |
|
|
|
<th>IP</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
@ -106,7 +106,7 @@ if (!empty($listDownloaded)) { |
|
|
|
?>
|
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('downloaded');"> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('dl', 'downloaded');"> |
|
|
|
</div> |
|
|
|
<?php |
|
|
|
} |
|
|
|
@ -118,9 +118,9 @@ if (!empty($listDupp)) { |
|
|
|
<table> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Date</td> |
|
|
|
<th>Filename</td> |
|
|
|
<th>IP</td> |
|
|
|
<th>Date</th> |
|
|
|
<th>Filename</th> |
|
|
|
<th>IP</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
@ -137,10 +137,72 @@ if (!empty($listDupp)) { |
|
|
|
?>
|
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('dupp');"> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('dl', 'dupp');"> |
|
|
|
</div> |
|
|
|
<?php |
|
|
|
} |
|
|
|
|
|
|
|
if (!empty($streamBegin)) { |
|
|
|
?>
|
|
|
|
<div class="$streamBegin"> |
|
|
|
Stream en cours : <br> |
|
|
|
<table> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Date</th> |
|
|
|
<th>Filename</th> |
|
|
|
<th>IP</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<?php |
|
|
|
foreach ($streamBegin as $result) { |
|
|
|
?>
|
|
|
|
<tr> |
|
|
|
<td><?= $result['timestamp']; ?></td>
|
|
|
|
<td><?= $result['filename']; ?></td>
|
|
|
|
<td><?= $result['ip']; ?></td>
|
|
|
|
</tr> |
|
|
|
<?php |
|
|
|
} |
|
|
|
?>
|
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('stream', 'begin');"> |
|
|
|
</div> |
|
|
|
<?php |
|
|
|
} |
|
|
|
|
|
|
|
if (!empty($streamFinished)) { |
|
|
|
?>
|
|
|
|
<div class="streamFinished"> |
|
|
|
Stream fini : <br> |
|
|
|
<table> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Date</th> |
|
|
|
<th>Filename</th> |
|
|
|
<th>IP</th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<?php |
|
|
|
foreach ($streamFinished as $result) { |
|
|
|
?>
|
|
|
|
<tr> |
|
|
|
<td><?= $result['timestamp']; ?></td>
|
|
|
|
<td><?= $result['filename']; ?></td>
|
|
|
|
<td><?= $result['ip']; ?></td>
|
|
|
|
</tr> |
|
|
|
<?php |
|
|
|
} |
|
|
|
?>
|
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
<input type="button" value="Wipe" onClick="javascript:wipe('stream', 'finished');"> |
|
|
|
</div> |
|
|
|
<?php |
|
|
|
} |
|
|
|
?>
|
|
|
|
</div> |
|
|
|
</body> |
|
|
|
|