1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/plugin/TopMenu/seo.php
2022-03-17 11:43:59 -03:00

17 lines
454 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';