<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2005 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (!defined('ADMIN_FILE')) {
die ("Access Denied");
}
global $currentlang;
$tmModuleName = "topMusic";
if(file_exists("modules/".$tmModuleName."/admin/language/lang-".$currentlang.".php")) {
include_once("modules/".$tmModuleName."/admin/language/lang-".$currentlang.".php");
} else {
include_once("modules/".$tmModuleName."/admin/language/lang-english.php");
}
include_once("modules/$tmModuleName/admin/language/lang-".$currentlang.".php");
include_once("modules/$tmModuleName/language/lang-".$currentlang.".php");
switch($_GET["op"]) {
case "topmusic":
include("modules/$tmModuleName/admin/index.php");
break;
}
?>