1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/plugin/TopMenu/index.php
Daniel Neto e20eb2aab3 update
2023-07-31 15:34:58 -03:00

64 lines
No EOL
1.7 KiB
PHP

<?php
require_once dirname(__FILE__) . '/../../videos/configuration.php';
require_once $global['systemRootPath'] . 'plugin/TopMenu/Objects/MenuItem.php';
global $config;
$menuItem = new MenuItem($_GET['id']);
$url = $menuItem->getUrl();
?>
<!DOCTYPE html>
<html lang="<?php echo getLanguage(); ?>">
<head>
<title><?php echo $menuItem->getTitle() . $config->getPageTitleSeparator() . $config->getWebSiteTitle(); ?></title>
<?php
include $global['systemRootPath'] . 'view/include/head.php';
?>
<style>
#mainFooter {
display: none;
}
</style>
</head>
<?php
if (!empty($url) && strpos($url, 'iframe:') !== false) {
$url = str_replace("iframe:", "", $url);
?>
<body class="<?php echo $global['bodyClass']; ?>" style="margin:0px;overflow:hidden">
<?php
include $global['systemRootPath'] . 'view/include/navbar.php';
?>
<iframe src="<?php echo $url; ?>" frameborder="0" style="height:100%;width:100%" height="100%" width="100%"></iframe>
<?php
include $global['systemRootPath'] . 'view/include/footer.php';
?>
</body>
<?php
} else {
?>
<body class="<?php echo $global['bodyClass']; ?>">
<?php
include $global['systemRootPath'] . 'view/include/navbar.php';
?>
<div class="container">
<div class="panel panel-default">
<div class="panel-body">
<?php echo $menuItem->getText(); ?>
</div>
</div>
</div>
<?php
include $global['systemRootPath'] . 'view/include/footer.php';
?>
<script>
$(document).ready(function() {});
</script>
</body>
<?php
}
?>
</html>