mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
11 lines
No EOL
333 B
PHP
11 lines
No EOL
333 B
PHP
<?php
|
|
require_once '../../videos/configuration.php';
|
|
session_write_close();
|
|
header('Content-Type: application/json');
|
|
$name = "advancedCustom.json.php";
|
|
$obj = ObjectYPT::getCache($name, 60);
|
|
if(empty($obj)){
|
|
$obj = AVideoPlugin::getObjectData("CustomizeAdvanced");
|
|
ObjectYPT::setCache($name, $obj);
|
|
}
|
|
echo json_encode($obj); |