Subversion Repositories personal-webbase

Rev

Rev 4 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
<?php
2
 
3 daniel-mar 3
if (!defined('IBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
2 daniel-mar 4
 
5
  echo $header;
6
 
7
if ($modulueberschrift == '') $modulueberschrift = $modul;
3 daniel-mar 8
echo '<h1>'.my_htmlentities($modulueberschrift).'</h1>';
2 daniel-mar 9
 
3 daniel-mar 10
echo '<b>Informationen &uuml;ber diese Personal WebBase-Schnittstelle</b><br><br>
2 daniel-mar 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
 
3 daniel-mar 32
echo 'Es sind '.count($module).' Personal WebBase-Module installiert:<br><br>';
2 daniel-mar 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
{
8 daniel-mar 51
  if ((filetype('design/'.wb_dir_escape($file)) == 'dir') && ($file <> '.') && ($file <> '..'))
2 daniel-mar 52
  {
53
    $des .= $file.', ';
54
    $desi++;
55
  }
56
}
57
 
58
$des = substr($des, 0, strlen($des)-2);
59
 
60
$des .= '</code>';
61
 
3 daniel-mar 62
echo 'Es sind '.$desi.' Personal WebBase-Designs installiert:<br><br>'.$des.'<br><br>';
2 daniel-mar 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
 
3 daniel-mar 73
echo '<b>Informationen &uuml;ber Personal WebBase</b><br><br>
2 daniel-mar 74
 
3 daniel-mar 75
Personal WebBase ist ein Datenbankprojekt von <a href="https://www.viathinksoft.de/" target="_blank">ViaThinkSoft</a>.
76
Wichtig: Benutzerdaten werden serverseitig NICHT verschl&uuml;sselt, daher ist es
77
sehr zu empfehlen, Personal WebBase nur auf nicht-&ouml;ffentlichen Webservern auszuf&uuml;hren (z.B. im Intranet oder auf dem
78
Localhost).<br><br>
2 daniel-mar 79
 
3 daniel-mar 80
Weitere Informationen, Module und Designs sowie die aktuelle Softwareversion finden Sie im <a href="https://www.personal-webbase.de/" target="_blank">Personal WebBase Webportal</a>.<br><br>';
2 daniel-mar 81
 
3 daniel-mar 82
echo '<a href="handbuch.pdf" target="_blank"><b>Personal WebBase-Handbuch &ouml;ffnen (PDF)</b></a>';
2 daniel-mar 83
 
84
  echo $footer;
85
 
3 daniel-mar 86
?>