-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdocumentation.php
60 lines (58 loc) · 1.75 KB
/
documentation.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
<?php
session_start();
error_reporting(E_ALL);
ini_set("display_errors", 1);
require_once("includes/setdefaultpage.php");
userlanguage();
require("language/".$_SESSION['language']."/documentation.php");
$header=explode(":",DEFAULTHEADER);
defaultheader($header[0],$header[1],$header[2],$header[3]);
?>
<body>
<?php defaulttop(); ?>
<header class="w3-container w3-teal">
<h1><?php echo WELCOME;?></h1>
</header>
<div class="w3-center">
<div class="w3-row"><br/>
<article class="w3-col m10 w3-container">
<h1><?php echo TITLE1;?></h1>
<table class="w3-table w3-bordered w3-striped w3-border w3-hoverable w3-striped w3-center">
<thead class="w3-light-blue w3-center">
<tr >
<th class="w3-center"><?php echo TH1;?></th>
<th class="w3-center"><?php echo TH2;?></th>
</tr>
</thead>
<tr>
<td class="w3-center"><?php echo TD1;?></td>
<td class="w3-center"><a href="manual/en/bigmanualhtml.zip" download><i class="material-icons"></i> English</a></td>
</tr>
<tr>
<td class="w3-center"><?php echo TD2;?></td>
<td class="w3-center"><a href="manual/en/manualhtml.zip" download><i class="material-icons"></i> English</a></td>
</tr>
<tr>
<td class="w3-center"><?php echo TD3;?></td>
<td class="w3-center"><a href="manual/en/manual.txt" download><i class="material-icons"></i> English</a></td>
</tr>
<tr>
<td class="w3-center"><?php echo TD4;?></td>
<td class="w3-center"><a href="manual/en/manual.pdf" download><i class="material-icons"></i> English</a></td>
</tr>
</table>
<br/>
</article>
<aside>
<nav class="w3-col m2 w3-light-grey">
<?php defaultmenuright();?>
</nav>
</aside>
</div>
</div>
<footer class="w3-container w3-small w3-teal">
<p><?php echo FOOTER;?></p>
</footer>
<?php
defaultfooter();
?>