mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
20 lines
No EOL
935 B
PHP
20 lines
No EOL
935 B
PHP
<div class="users_id_online_label users_id_<?php echo $users_id; ?> <?php echo $class; ?>" style="<?php echo $style; ?>">
|
|
<span class="label label-danger"><?php echo __('Offline'); ?></span>
|
|
<span class="label label-success"><?php echo __('Online'); ?></span>
|
|
<?php
|
|
if(User::isLogged() && $users_id !== User::getId()){
|
|
$shouldShowCaller = YPTSocket::shouldShowCaller();
|
|
if ($shouldShowCaller->show) {
|
|
?>
|
|
<button class="btn btn-default btn-xs callerButton" type="button"
|
|
onclick="event.preventDefault(); return callUserNow(<?php echo $users_id; ?>);"
|
|
data-toggle="tooltip" data-placement="bottom" title="<?php echo __('Call'); ?>">
|
|
<i class="fas fa-phone"></i>
|
|
</button>
|
|
<?php
|
|
} else {
|
|
echo "<!-- shouldShowCaller {$shouldShowCaller->reason} -->";
|
|
}
|
|
}
|
|
?>
|
|
</div>
|