forked from yi12345/TravianT4
-
Notifications
You must be signed in to change notification settings - Fork 1
/
help.php
124 lines (111 loc) · 4.68 KB
/
help.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
include("GameEngine/Village.php");
include "Templates/html.tpl";
?>
<body class="v35 webkit chrome plus">
<div id="wrapper">
<img id="staticElements" src="img/x.gif" alt="" />
<div id="logoutContainer">
<a id="logout" href="logout.php" title="<?php echo LOGOUT; ?>"> </a>
</div>
<div class="bodyWrapper">
<img style="filter:chroma();" src="img/x.gif" id="msfilter" alt="" />
<div id="header">
<div id="mtop">
<a id="logo" href="<?php echo HOMEPAGE; ?>" target="_blank" title="<?php echo SERVER_NAME ?>"></a>
<ul id="navigation">
<li id="n1" class="resources">
<a class="" href="dorf1.php" accesskey="1" title="<?php echo HEADER_DORF1; ?>"></a>
</li>
<li id="n2" class="village">
<a class="" href="dorf2.php" accesskey="2" title="<?php echo HEADER_DORF2; ?>"></a>
</li>
<li id="n3" class="map">
<a class="" href="karte.php" accesskey="3" title="<?php echo HEADER_MAP; ?>"></a>
</li>
<li id="n4" class="stats">
<a class="" href="statistiken.php" accesskey="4" title="<?php echo HEADER_STATS; ?>"></a>
</li>
<?php
if(count($database->getMessage($session->uid,9)) >= 1000) {
$unmsg = "+1000";
} else { $unmsg = count($database->getMessage($session->uid,9)); }
if(count($database->getNotice5($session->uid)) >= 1000) {
$unnotice = "+1000";
} else { $unnotice = count($database->getNotice5($session->uid)); }
?>
<li id="n5" class="reports">
<a href="berichte.php" accesskey="5" title="<?php echo HEADER_NOTICES; ?><?php if($message->nunread){ echo' ('.count($database->getNotice5($session->uid)).')'; } ?>"></a>
<?php
if($message->nunread){
echo "<div class=\"ltr bubble\" title=\"".$unnotice." ".HEADER_NOTICES_NEW."\" style=\"display:block\">
<div class=\"bubble-background-l\"></div>
<div class=\"bubble-background-r\"></div>
<div class=\"bubble-content\">".$unnotice."</div></div>";
}
?>
</li>
<li id="n6" class="messages">
<a href="nachrichten.php" accesskey="6" title="<?php echo HEADER_MESSAGES; ?><?php if($message->unread){ echo' ('.count($database->getMessage($session->uid,9)).')'; } ?>"></a>
<?php
if($message->unread) {
echo "<div class=\"ltr bubble\" title=\"".$unmsg." ".HEADER_MESSAGES_NEW."\" style=\"display:block\">
<div class=\"bubble-background-l\"></div>
<div class=\"bubble-background-r\"></div>
<div class=\"bubble-content\">".$unmsg."</div></div>";
}
?>
</li>
</ul>
<div class="clear"></div>
</div>
</div>
<div id="mid">
<a id="ingameManual" href="help.php" title="Aide">
<img src="img/x.gif" class="question" alt="Aide"/>
</a>
<div class="clear"></div>
<div id="contentOuterContainer">
<div class="contentTitle"> </div>
<div class="contentContainer">
<div id="content" class="universal"><h1 class="titleInHeader"><?php echo $lang['HELP1']['TITRE']; ?></h1>
<div class="helpInfoBlock">
<a target="_blank" href="http://t4.answers.travian.fr/" class="helpHeadLine"><?php echo $lang['HELP1']['Partie_1']; ?></a>
<a target="_blank" href="http://t4.answers.travian.fr/" class="helpText"><?php echo $lang['HELP1']['Text_1']; ?></a>
</div>
<div class="helpInfoBlock">
<a target="_blank" href="http://www.travian.fr/spielregeln.php" class="helpHeadLine"><?php echo $lang['HELP1']['Partie_2']; ?></a>
<a target="_blank" href="http://www.travian.fr/spielregeln.php" class="helpText"><?php echo $lang['HELP1']['Text_2']; ?></a>
</div>
<div class="helpInfoBlock">
<a href="help.php?page=support" class="helpHeadLine"><?php echo $lang['HELP1']['Partie_3']; ?></a>
<a href="help.php?page=support" class="helpText"><?php echo $lang['HELP1']['Text_3']; ?></a>
</div>
<div class="helpInfoBlock">
<a href="plus.php?id=8" class="helpHeadLine"><?php echo $lang['HELP1']['Partie_4']; ?></a>
<a href="plus.php?id=8" class="helpText"><?php echo $lang['HELP1']['Text_4']; ?></a>
</div>
<div class="helpInfoBlock">
<a target="_blank" href="http://forum.travian.fr" class="helpHeadLine"><?php echo $lang['HELP1']['Partie_5']; ?></a>
<a target="_blank" href="http://forum.travian.fr" class="helpText"><?php echo $lang['HELP1']['Text_5']; ?></a>
</div>
<div class="helpInfoBlock">
<a href="#" class="helpHeadLine" onclick="return Travian.Game.iPopup(0,0);"><?php echo $lang['HELP1']['Partie_6']; ?></a>
<a href="#" onclick="return Travian.Game.iPopup(0,0);" class="helpText"><?php echo $lang['HELP1']['Text_6']; ?></a>
</div>
<div class="clear"></div>
</div></div>
<div class="contentFooter"> </div>
</div>
<?php
include("Templates/sideinfo.tpl");
include("Templates/footer.tpl");
include("Templates/header.tpl");
include("Templates/res.tpl");
include("Templates/vname.tpl");
include("Templates/quest.tpl");
?>
<div id="ce"></div>
</div>
</body>
</html>