mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
17 lines
437 B
PHP
17 lines
437 B
PHP
<?php
|
|
global $global;
|
|
require_once dirname(__FILE__) . '/../../videos/configuration.php';
|
|
require_once $global['systemRootPath'] . 'plugin/AVideoPlugin.php';
|
|
|
|
$topMenu=AVideoPlugin::loadPluginIfEnabled("TopMenu");
|
|
|
|
if(!$topMenu)
|
|
die("404 page not found");
|
|
|
|
|
|
$id=$topMenu->getidBySeoUrl($_GET['menuSeoUrlItem']);
|
|
if(!$id)
|
|
die("404 page not found");
|
|
|
|
$_GET['id']=$id;
|
|
require_once $global['systemRootPath'] . 'plugin/TopMenu/index.php';
|