1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/plugin/CDN/Storage/panelIsMoving.php

19 lines
No EOL
570 B
PHP

<div class="panel panel-danger">
<div class="panel-heading">
<?php echo $video['title']; ?>
</div>
<div class="panel-body">
<i class="fas fa-sync fa-spin"></i>
<?php
echo __('Created') . ': ' . humanTimingAgo($isMoving['created'], 0, false).' ';
echo __('Modified') . ': ' . humanTimingAgo($isMoving['modified'], 0, false);
?>
</div>
<div class="panel-footer">
<?php
$file = CDNStorage::getLogFile($videos_id);
echo nl2br(file_get_contents($file));
?>
</div>
</div>