1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/plugin/TopMenu/seo.php
2019-12-02 12:17:41 -03:00

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';