mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
28 lines
No EOL
848 B
PHP
28 lines
No EOL
848 B
PHP
<?php
|
|
$isFirstPage = 1;
|
|
global $global, $config;
|
|
if (!isset($global['systemRootPath'])) {
|
|
require_once __DIR__ . '/../../../videos/configuration.php';
|
|
}
|
|
require_once $global['systemRootPath'] . 'objects/video.php';
|
|
require_once $global['systemRootPath'] . 'objects/category.php';
|
|
|
|
if (AVideoPlugin::isEnabledByName('PlayLists')) {
|
|
PlayLists::loadScripts();
|
|
}
|
|
$obj = AVideoPlugin::getObjectData("YouPHPFlix2");
|
|
$_page = new Page(array(''));
|
|
$_page->setIncludeInHead(array('plugin/YouPHPFlix2/view/modeFlixHead.php'));
|
|
?>
|
|
<div class="container-fluid nopadding flickity-area" id="mainContainer" style="display:none;">
|
|
<?php
|
|
include $global['systemRootPath'] . 'plugin/YouPHPFlix2/view/modeFlixBody.php';
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
include $global['systemRootPath'] . 'plugin/YouPHPFlix2/view/modeFlixFooter.php';
|
|
?>
|
|
<?php
|
|
$_page->print();
|
|
?>
|