mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
26 lines
No EOL
1 KiB
PHP
26 lines
No EOL
1 KiB
PHP
<?php
|
|
$titleBtn1 = __('Add to first page');
|
|
$titleBtn2 = __('Remove first page');
|
|
global $global;
|
|
$global['channelToYouPHPFlix2'] = 1;
|
|
$class = '';
|
|
if(YouPHPFlix2::isChannelToYouPHPFlix2($users_id)){
|
|
$class = 'isChannelToYouPHPFlix2';
|
|
}
|
|
if(!User::isAdmin()){
|
|
return '';
|
|
}
|
|
?>
|
|
<div class="ChannelToYouPHPFlix2<?php echo $users_id; ?> <?php echo $class; ?>" style="display: inline-block;">
|
|
<button class="btn btn-primary btn-xs addChannelToYouPHPFlix2" onclick="channelToYouPHPFlix2(<?php echo $users_id; ?>, 1);" data-toggle="tooltip" title="<?php echo $titleBtn1; ?>" >
|
|
<i class="fas fa-plus"></i> <small><?php echo $titleBtn1; ?></small>
|
|
</button>
|
|
<button class="btn btn-danger btn-xs removeChannelFromYouPHPFlix2" onclick="channelToYouPHPFlix2(<?php echo $users_id; ?>, 0);" data-toggle="tooltip" title="<?php echo $titleBtn2; ?>" >
|
|
<i class="fas fa-trash"></i> <small><?php echo $titleBtn2; ?></small>
|
|
</button>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function () {
|
|
});
|
|
</script>
|