-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcave_symbol_bibliography.php
34 lines (28 loc) · 1.36 KB
/
cave_symbol_bibliography.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
<?php
include "cave_symbol_functions.php";
//get form parameters
$language = $_GET["languageSelection"];
$doc = new DOMDocument();
$doc->validateOnParse = true;
$doc->load("guiElements.xml");
//get relevant gui data
$title = getGuiValue($doc,"title",$language);
$UISworkingGroup = getGuiValue($doc,"UISworkingGroup",$language);
$bibliography = getGuiValue($doc,"bibliography",$language);
$languageChoice = getGuiValue($doc,"languageChoice",$language);
$backToSymbolchoice = getGuiValue($doc,"backToSymbolchoice",$language);
$script = null;
//write Header
writeHeader($title,$UISworkingGroup,$script);
print "<h4>$bibliography:</h4>\n";
print "<ul>\n";
print "<li>Dériaz P. (1991): Compte-rendu de la Rencontre Internationale de Topographie. - Actes du 9e Congrès National de la SSS, Charmey 1991.</li>\n";
print "<li>Fabre et al. (1978): Signes spéléologiques conventionnels. - UIS / AFK.</li>\n";
print "<li>Müller R. (1980): Symbole für Höhlenpläne. - Beiträge zur Höhlen- und Karstkunde in Südwestdeutschland, 22, 1980.</li>\n";
print "<li>Grossenbacher Y. (1992): Höhlenvermessung. - SGH-Kurs Nr. 4</li>\n";
print "</ul>\n";
print "<p><a href=\"cave_symbol.php?languageSelection=$language\">$backToSymbolchoice</a>, <a href=\"index.php\">$languageChoice</a></p>\n";
print "</form>\n";
//close HTML
writeHTMLEnd();
?>