Added license tags for CC0,...
Bernd Wurst authored 14 years ago
|
1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4)
|
Copyright year update
Bernd Wurst authored 8 years ago
|
5) Written 2008-2018 by schokokeks.org Hosting, namely
|
Added license tags for CC0,...
Bernd Wurst authored 14 years ago
|
6) Bernd Wurst <bernd@schokokeks.org>
7) Hanno Böck <hanno@schokokeks.org>
8)
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10)
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
|
URLs von http nach https
Hanno Böck authored 9 years ago
|
12) https://creativecommons.org/publicdomain/zero/1.0/
|
Added license tags for CC0,...
Bernd Wurst authored 14 years ago
|
13)
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) ?><?xml version="1.0" encoding="utf-8"?>
|
Umstellung auf Theme-Suppor...
bernd authored 15 years ago
|
17) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
18) "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
19)
20) <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
21) <head>
22)
23) <?php
24) if ($title)
25) echo "<title>$title - Administration</title>";
26) else
27) echo "<title>Administration</title>";
28) ?>
|
CSS komplett in das Theme a...
bernd authored 15 years ago
|
29) <!--<link rel="stylesheet" href="<?php echo $BASE_PATH; ?>css/default.css" type="text/css" media="screen" title="Normal" />-->
|
Umstellung auf Theme-Suppor...
bernd authored 15 years ago
|
30) <link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" />
31) <?php echo $html_header; ?>
|
Neues Layout der Rechnungen...
Bernd Wurst authored 11 years ago
|
32) <link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" />
|
Umstellung auf Theme-Suppor...
bernd authored 15 years ago
|
33) </head>
34)
35) <body>
36) <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
37)
38) <div class="menu">
39) <a href="<?php echo $BASE_PATH; ?>"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a>
40)
41) <?php echo $menu; ?>
42)
43) <?php echo $userinfo; ?>
44)
45) </div>
46)
47) <div class="content">
48) <a id="content" style="display: none"> </a>
49)
50) <?php
51) if ($messages) {
52) echo $messages;
53) }
54) ?>
55)
56) <?php
57) if ($headline) {
|
Neues Layout der Rechnungen...
Bernd Wurst authored 11 years ago
|
58) echo "<h3 class=\"headline\">$headline</h3>";
|
Umstellung auf Theme-Suppor...
bernd authored 15 years ago
|
59) }
60) ?>
61)
62) <?php echo $content; ?>
63)
|
Funktion für Fußnoten einge...
Bernd Wurst authored 8 years ago
|
64) <?php if ($footnotes) {
65) echo '<div class="footnotes">';
66) foreach ($footnotes as $num => $explaination) {
67) echo str_repeat('*', $num+1).': '.$explaination;
68) }
69) echo '</div>';
70) } ?>
|
Umstellung auf Theme-Suppor...
bernd authored 15 years ago
|
71) </div>
72) <div class="foot">
|
URLs von http nach https
Hanno Böck authored 9 years ago
|
73) <p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="https://schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="https://schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="<?php echo $BASE_PATH; ?>go/about/about">indem Sie hier klicken</a>.</p>
|