mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
12 lines
No EOL
336 B
PHP
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');
|
|
}
|
|
?>
|