This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
45 lines (44 loc) · 2.53 KB
/
header.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
<?php
include "conx.php";
include "langc/lang$lang.php";
$doHeader = '
<link rel="stylesheet" href="../CSS/desplegable.css">
<link rel="stylesheet" href="../CSS/style.css">
<header>
<nav>
<ul>
<li><a href="'.$root.'/herramientas/index.php"><span class="primero"><i class="icon icon-menu"></i></span>'.$nvbarMod.'</a>
<ul>
<li><a href="'.$root.'/herramientas/add.php">'.$hrAddMod.'</a></li>
<li><a href="'.$root.'/herramientas/updt.php">'.$hrUpdMod.'</a></li>
<li><a href="'.$root.'/herramientas/del.php">'.$hrDelMod.'</a></li>
</ul>
</li>
<li><a href="'.$root.'/herramientas/index.php"><span class="primero"><i class="icon icon-menu"></i></span>'.$nvbarQuests.'</a>
<ul>
<li><a href="'.$root.'/herramientas/addQuest.php">'.$hrAddQuest.'</a></li>
<li><a href="'.$root.'/herramientas/updQuest.php">'.$hrUpdQuest.'</a></li>
<li><a href="'.$root.'/herramientas/delQuest.php">'.$hrDelQuest.'</a></li>
</ul>
</li>
<li><a href="'.$root.'/herramientas/index.php"><span class="primero"><i class="icon icon-menu"></i></span>'.$nvbarExtras.'</a>
<ul>
<li><a href="'.$root.'/herramientas/acc.php">'.$hrDelAcc.'</a></li>
<li><a href="'.$root.'/herramientas/dowYlks.php">'.$hrUpdDaL.'</a></li>
</ul>
</li>
<li><a href="'.$root.'/help/index.php"><span class="segundo"><i class="icon icon-info"></i></span>'.$information.'</a>
<ul>
<li><a target="_blank" href="'.$root.'/help/accs.php">'.$cuentas.'</a></li>
<li><a target="_blank" href="'.$root.'/help/assId.php">'.$assigns.'</a></li>
<li><a target="_blank" href="'.$root.'/help/mods.php">'.$moderators.'</a></li>
<li><a target="_blank" href="'.$root.'/help/roleid.php">'.$roles.'</a></li>
<li><a target="_blank" href="'.$root.'/help/lvls.php">'.$levels.'</a></li>
<li><a target="_blank" href="'.$root.'/help/users.php">'.$users.'</a></li>
<li><a target="_blank" href="'.$root.'/help/types.php">'.$type.'</a></li>
</ul>
</li>
</ul>
</nav>
</header>';
?>