mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
26 lines
784 B
PHP
26 lines
784 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
global $global, $config;
|
|
if (!isset($global['systemRootPath'])) {
|
|
require_once '../videos/configuration.php';
|
|
}
|
|
require_once $global['systemRootPath'] . 'objects/user.php';
|
|
require_once $global['systemRootPath'] . 'objects/playlist.php';
|
|
if (!PlayLists::canManageAllPlaylists()) {
|
|
forbiddenPage('Permission denied');
|
|
}
|
|
if (empty($_REQUEST['playlist_id'])) {
|
|
forbiddenPage('playlist_id is empty');
|
|
}
|
|
|
|
$obj = new stdClass();
|
|
$obj->playlist_id = $_REQUEST['playlist_id'];
|
|
$obj->showOnFirstPage = $_REQUEST['showOnFirstPage'];
|
|
$obj->msg = '';
|
|
|
|
$pl = new PlayList($_POST['playlist_id']);
|
|
$pl->setShowOnFirstPage($_REQUEST['showOnFirstPage']);
|
|
$obj->saved = $pl->save();
|
|
$obj->error = empty($obj->saved);
|
|
|
|
echo json_encode($obj);
|