mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
22 lines
No EOL
922 B
PHP
22 lines
No EOL
922 B
PHP
<?php
|
|
$uid = uniqid();
|
|
?>
|
|
<div class="material-switch">
|
|
<input class="playerSwitchDefault" data-toggle="toggle" type="checkbox" value="" id="switch<?php echo $uid; ?>" <?php echo (CustomizeUser::canDownloadVideosFromUser($users_id)) ? "checked" : ""; ?>>
|
|
<label for="switch<?php echo $uid; ?>" class="label-primary"></label>
|
|
</div>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('#switch<?php echo $uid; ?>').change(function (e) {
|
|
modal.showPleaseWait();
|
|
$.ajax({
|
|
url: '<?php echo $global['webSiteRootURL']; ?>plugin/CustomizeUser/set.json.php',
|
|
data: {"type": "userCanAllowFilesDownload", "value": $('#switch<?php echo $uid; ?>').is(":checked")},
|
|
type: 'post',
|
|
success: function (response) {
|
|
modal.hidePleaseWait();
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|