1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/plugin/CustomizeUser/customizeUser.json.php
2023-10-16 17:58:47 -03:00

11 lines
343 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);