mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
59 lines
2 KiB
PHP
59 lines
2 KiB
PHP
<?php
|
|
require_once '../../videos/configuration.php';
|
|
|
|
if (!User::isAdmin()) {
|
|
forbiddenPage('Must be admin');
|
|
}
|
|
$users_id = intval(@$_REQUEST['users_id']);
|
|
if (empty($users_id)) {
|
|
forbiddenPage('Empty users_id');
|
|
}
|
|
$count = User::getExtraSubscribers($users_id);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="<?php echo getLanguage(); ?>">
|
|
<head>
|
|
<title><?php echo __("Set subscribers"); ?></title>
|
|
<?php
|
|
include $global['systemRootPath'] . 'view/include/head.php';
|
|
?>
|
|
</head>
|
|
<body class="<?php echo $global['bodyClass']; ?>">
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<?php
|
|
echo Video::getCreatorHTML($users_id);
|
|
?>
|
|
</div>
|
|
<div class="panel-body">
|
|
Add extra <input type="number" step="1" id="ExtraSubscribers" value="<?php echo $count; ?>"/> subscribers on his subscription counter.
|
|
|
|
</div>
|
|
<div class="panel-footer">
|
|
<button class="btn btn-success btn-lg btn-block" onclick="setSubscribers();">
|
|
<i class="fas fa-save"></i> <?php echo __('Save'); ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
include $global['systemRootPath'] . 'view/include/footer.php';
|
|
?>
|
|
<script type="text/javascript">
|
|
function setSubscribers() {
|
|
modal.showPleaseWait();
|
|
$.ajax({
|
|
url: webSiteRootURL + 'plugin/CustomizeUser/setSubscribers.json.php',
|
|
method: 'POST',
|
|
data: {
|
|
users_id: <?php echo $users_id; ?>,
|
|
ExtraSubscribers: $('#ExtraSubscribers').val()
|
|
},
|
|
success: function (response) {
|
|
modal.hidePleaseWait();
|
|
avideoResponse(response);
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|