1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/view/offline.php
Daniel Neto b3f30f1575 Update
2023-02-21 12:21:14 -03:00

12 lines
No EOL
336 B
PHP

<?php
//require_once '../videos/configuration.php';
$file = dirname(__FILE__) . DIRECTORY_SEPARATOR.'../plugin/VideoOffline/offlineVideo.php';
error_log($file);
$offlineFile = $file;
if(file_exists($offlineFile)){
require_once $offlineFile;
exit;
}else{
//forbiddenPage('This feature requires the VideoOffline plugin');
}
?>