Subversion Repositories personal-webbase

Rev

Rev 14 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
12 daniel-mar 1
<?php
2
 
14 daniel-mar 3
if (!defined('WBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
12 daniel-mar 4
 
5
  if (function_exists('show_modul_search'))
6
    echo str_replace('<body', '<body onload="self.focus();document.getElementById(\'suchbegriff\').focus();"', $header);
7
  else
8
    echo $header;
9
 
10
  if ($modulueberschrift == '') $modulueberschrift = $modul;
11
  echo '<h1>'.my_htmlentities($modulueberschrift).'</h1>';
12
 
13
  if (decoct(@fileperms('modules/'.wb_dir_escape($modul).'/system/tmp/')) != 40777)
14
    echo '<font color="#FF0000"><b>Die Funktionalit&auml;t dieses Modules k&ouml;nnte beeintr&auml;chtigt sein, da der Administrator folgendes Verzeichnis nicht schreibbar (CHMOD 0777) gemacht hat:</b><br>modules/'.wb_dir_escape($modul).'/system/tmp/</font><br><br>';
15
 
16
  if (function_exists('show_modul_search')) show_modul_search($modul, $seite);
17
 
15 daniel-mar 18
  wb_draw_table_begin();
12 daniel-mar 19
 
15 daniel-mar 20
  // wb_draw_table_content('', '<b>Name</b>', '', '<b>Aktionen</b>', '', '', '', '');
12 daniel-mar 21
  gfx_zeichneordner($modul, $mysql_zugangsdaten['praefix'].'popper_konten', 'ORDER BY `name`');
15 daniel-mar 22
  wb_draw_table_end();
12 daniel-mar 23
  echo '<a href="'.$_SERVER['PHP_SELF'].'?seite=edit&amp;modul='.urlencode($modul).'&amp;aktion=new">Neues Postfach hinzuf&uuml;gen</a>';
24
  echo '<br><a href="'.$_SERVER['PHP_SELF'].'?seite=edit&amp;modul=user_ordner&amp;aktion=new&amp;kategorie='.urlencode($modul).'">Einen neuen Ordner hinzuf&uuml;gen</a>';
25
 
26
  echo '<br><br>Es wird folgende Websoftware verwendet: ';
27
  if (file_exists('modules/'.wb_dir_escape($modul).'/system/ver.html'))
28
  {
29
    $handle = @fopen('modules/'.wb_dir_escape($modul).'/system/ver.html', 'r');
30
    $buffer = '';
31
    while (!@feof($handle))
32
    {
33
      $buffer .= @fgets($handle, 4096);
34
    }
35
    echo $buffer;
36
    @fclose($handle);
37
  }
38
  else
39
  {
40
    echo '<font color="#FF0000">modules/'.wb_dir_escape($modul).'/system/ver.html wurde nicht gefunden!</font>';
41
  }
42
  echo '<br><br>';
43
 
44
  echo $footer;
45
 
46
?>