1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/plugin/CustomizeUser/customizeUser.json.php
2022-01-06 21:30:01 +08:00

11 lines
331 B
PHP

<?php
require_once '../../videos/configuration.php';
session_write_close();
header('Content-Type: application/json');
$name = "customizeUser.json.php";
$obj = ObjectYPT::getCache($name, 60);
if (empty($obj)) {
$obj = AVideoPlugin::getObjectData("CustomizeUser");
ObjectYPT::setCache($name, $obj);
}
echo json_encode($obj);