20 lines
522 B
PHP
20 lines
522 B
PHP
<?php
|
|
$jsonFilePath = './api/ad_type.json';
|
|
|
|
if (file_exists($jsonFilePath) && is_readable($jsonFilePath)) {
|
|
$jsonContent = file_get_contents($jsonFilePath);
|
|
$jsonData = json_decode($jsonContent, true);
|
|
|
|
$fileToLoad = $jsonData['adType'] ?? 'manual';
|
|
if ($fileToLoad === 'manual') {
|
|
include('./manual_ads.php');
|
|
} else if ($fileToLoad === 'tmdb') {
|
|
include('./tmdb.php');
|
|
} else {
|
|
echo "No valid ad type found.";
|
|
}
|
|
} else {
|
|
echo "Unable to read ad type file.";
|
|
}
|
|
?>
|