1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00
Oinktube/plugin/CustomizeUser/View/channelCall.php
2022-05-02 16:11:39 -03:00

17 lines
No EOL
796 B
PHP

<?php
if (!empty($users_id) && User::isLogged() && $users_id != User::getId() && CustomizeUser::isChannelCallEnabled()) {
$identification = User::getNameIdentificationById($users_id);
?>
<button class="btn btn-default <?php echo $class; ?> caller<?php echo $users_id; ?>"
type="button" onclick="avideoModalIframeFull(webSiteRootURL + 'plugin/YPTSocket/callUser.php?users_id=<?php echo $users_id; ?>');"
data-toggle="tooltip" data-placement="bottom" title="<?php echo __('Call'), ' ', $identification; ?>"
style="display: none;" id="caller<?php echo $users_id; ?>">
<i class="fas fa-phone"></i>
</button>
<script>
$(function () {
callerCheckUser(<?php echo $users_id; ?>);
});
</script>
<?php
}