664 |
mateusz.vi |
1 |
<h1>SvarDOS help documentation</h1>
|
|
|
2 |
<p class="copyr">no documentation is perfect, this one is no exception</p>
|
|
|
3 |
|
|
|
4 |
<p style="text-align: center;">Select the help language you wish to consult:<br><br>
|
|
|
5 |
|
|
|
6 |
<?php
|
|
|
7 |
|
|
|
8 |
$list = scandir('./help/');
|
|
|
9 |
|
|
|
10 |
foreach ($list as $l) {
|
|
|
11 |
if ((!is_dir("help/{$l}")) || (!preg_match('/help-../', $l))) continue;
|
|
|
12 |
$lang = strtoupper(substr($l, 5));
|
|
|
13 |
echo '<a style="font-size: 1.2em;" href="phpamb.php?fname=help/' . $l . '">' . $lang . "</a><br>\n";
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
?>
|
|
|
17 |
|
|
|
18 |
<br><br>
|
|
|
19 |
|
|
|
20 |
Wanna help to improve the SvarDOS help documentation? <a href="phpamb.php?fname=help/help-en&f=contact.ama">Get in touch with us</a>!
|
|
|
21 |
|
|
|
22 |
</p>
|