1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/plugin/Live/tabs/tabAdmin.php
Daniel Neto f245535aad Update
2023-04-25 10:05:09 -03:00

35 lines
No EOL
1.4 KiB
PHP

<div class="panel panel-default">
<div class="panel-heading"><i class="fa fa-user"></i> <?php echo __("Active Lives"); ?> </div>
<div class="panel-body">
<table class="table">
<thead>
<tr>
<th>Title</th>
<th>Key</th>
<th>Users ID</th>
</tr>
</thead>
<tbody>
<?php
$rows = LiveTransmitionHistory::getActiveLives();
foreach ($rows as $item) {
$users_id = $item['users_id'];
?>
<tr>
<td><?php echo $item['title'] ?></td>
<td><?php echo $item['key'] ?></td>
<td>
<img src="<?php echo User::getPhoto($users_id); ?>" class="img img-thumbnail img-responsive pull-left" style="max-height: 100px; margin: 0 10px;" alt="User Photo" />
<a href="<?php echo User::getChannelLink($users_id); ?>" class="btn btn-default">
<i class="fas fa-play-circle"></i>
<?php echo User::getNameIdentificationById($users_id); ?>
</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>