Subversion Repositories personal-webbase

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
<?php
2
 
3
if (!defined('IBLEGAL')) die('Kann nicht ohne IronBASE ausgef&uuml;hrt werden.');
4
 
5
  echo $header;
6
 
7
if ($modulueberschrift == '') $modulueberschrift = $modul;
8
echo '<h1>'.htmlentities($modulueberschrift).'</h1>';
9
 
10
echo '<b>Informationen &uuml;ber diese IronBASE-Schnittstelle</b><br><br>
11
 
12
Version des Systems: Version '.$revision.' ('.$rev_datum.')<br>';
13
 
14
if ($konfiguration['core_cronjob']['passivcron'] == '1')
15
{
16
  echo 'Passive Cronjobs';
17
}
18
else
19
{
20
  if ($konfiguration['core_cronjob']['lastpromotor'] == '')
21
  {
22
    echo 'Aktive Cronjobs (Shell)';
23
  }
24
  else
25
  {
26
    echo 'Aktive Cronjobs (Promotor: <a href="http://'.$konfiguration['core_cronjob']['lastpromotor'].'/" target="_blank">'.$konfiguration['core_cronjob']['lastpromotor'].'</a>)';
27
  }
28
}
29
 
30
echo '<br><br>';
31
 
32
echo 'Es sind '.count($module).' IronBASE-Module installiert:<br><br>';
33
 
34
$mod = '';
35
foreach ($module as $m1 => $m2)
36
{
37
  $mod .= $module[$m1].', ';
38
}
39
 
40
unset($m1);
41
unset($m2);
42
 
43
echo '<code>'.substr($mod, 0, strlen($mod)-2).'</code><br><br>';
44
 
45
$des = '<code>';
46
$desi = 0;
47
 
48
$handle = @opendir('design/');
49
while ($file = @readdir($handle))
50
{
51
  if ((filetype('design/'.$file) == 'dir') && ($file <> '.') && ($file <> '..'))
52
  {
53
    $des .= $file.', ';
54
    $desi++;
55
  }
56
}
57
 
58
$des = substr($des, 0, strlen($des)-2);
59
 
60
$des .= '</code>';
61
 
62
echo 'Es sind '.$desi.' IronBASE-Designs installiert:<br><br>'.$des.'<br><br>';
63
 
64
echo 'E-Mail-Adresse des Serveradministrators: ';
65
 
66
if (check_email($konfiguration[$modul]['admin_mail']))
67
  echo secure_email($konfiguration[$modul]['admin_mail'], $konfiguration[$modul]['admin_mail'], 1);
68
else
69
  echo 'Keine angegeben';
70
 
71
echo '<br><br>';
72
 
73
echo '<b>Informationen &uuml;ber IronBASE</b><br><br>
74
 
75
IronBASE ist ein Datenbankprojekt von <a href="http://www.viathinksoft.de/" target="_blank">ViaThinkSoft</a>. Leider ist es aus Performance-
76
und Entwicklungsgr&uuml;nden nicht m&ouml;glich, eine Verschl&uuml;sselung zur
77
Verf&uuml;gung zu stellen. Daher k&ouml;nnen wir nicht garantieren, dass Ihre Daten auf
78
Nicht-ViaThinkSoft-Servern sicher behandelt werden.<br><br>
79
 
80
Weitere Informationen, Module und Designs sowie die aktuelle Publikation finden Sie im <a href="http://www.ironbase-portal.de.vu/" target="_blank">IronBASE Webportal</a>.<br><br>';
81
 
82
echo '<a href="handbuch.pdf" target="_blank"><b>IronBASE-Handbuch &ouml;ffnen (PDF)</b></a>';
83
 
84
  echo $footer;
85
 
86
?>