This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathleftmenu.php
81 lines (71 loc) · 2.98 KB
/
leftmenu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**
* This file is part of XNova:Legacies
*
* @license http://www.gnu.org/licenses/gpl-3.0.txt
* @see http://www.xnova-ng.org/
*
* Copyright (c) 2009-Present, XNova Support Team <http://www.xnova-ng.org>
* All rights reserved.
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --> NOTICE <--
* This file is part of the core development branch, changing its contents will
* make you unable to use the automatic updates manager. Please refer to the
* documentation for further information about customizing XNova.
*
*/
define('INSIDE' , true);
define('INSTALL' , false);
define('QRYLESS', true);
require_once dirname(__FILE__) .'/common.php';
function ShowLeftMenu ( $Level , $Template = 'left_menu') {
global $lang, $user, $game_config, $MustacheEngine;
includeLang('leftmenu');
$MenuTPL = gettemplate( $Template );
$parse = $lang;
$parse['lm_tx_serv'] = $game_config['resource_multiplier'];
$parse['lm_tx_game'] = $game_config['game_speed'] / 2500;
$parse['lm_tx_fleet'] = $game_config['fleet_speed'] / 2500;
$parse['lm_tx_queue'] = MAX_FLEET_OR_DEFS_PER_ROW;
$parse['XNovaRelease'] = VERSION;
$parse['forum_url'] = $game_config['forum_url'];
$parse['mf'] = "Hauptframe";
$parse['userIsAdmin'] = $Level > 0;
//Lien suppl�mentaire d�termin� dans le panel admin
$parse['link_enable'] = $game_config['link_enable'] == 1;
if($parse['link_enable']){
$parse["link_url"] = $game_config['link_url'];
$parse["link_name"] = $game_config['link_name'];
}else{
$parse["link_url"] = "";
$parse["link_name"] = "";
}
//Maintenant on v�rifie si les annonces sont activ�es ou non
$parse["enable_announces"] = $game_config['enable_announces'] == 1;
//Maintenant le marchand
$parse["enable_marchand"] = $game_config['enable_marchand'] == 1;
//Maintenant les notes
$parse["enable_notes"] = $game_config['enable_notes'] == 1;
$parse['servername'] = $game_config['game_name'];
$Menu = $MustacheEngine->render( $MenuTPL, $parse);
return $Menu;
}
$Menu = ShowLeftMenu ( $user['authlevel'] );
display ( $Menu, "Menu", '', false );
// -----------------------------------------------------------------------------------------------------------
// History version
// 1.0 - Passage en fonction pour XNova version future
// 1.1 - Modification pour gestion Admin / Game OP / Modo