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ü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 | if (function_exists('show_modul_search')) show_modul_search($modul, $seite); |
||
15 | daniel-mar | 13 | wb_draw_table_begin(); |
12 | daniel-mar | 14 | |
15 | daniel-mar | 15 | // wb_draw_table_content('', '<b>Name</b>', '', '<b>Aktionen</b>', '', '', '', ''); |
12 | daniel-mar | 16 | gfx_zeichneordner($modul, $mysql_zugangsdaten['praefix'].'tabellen', 'ORDER BY `name`'); |
15 | daniel-mar | 17 | wb_draw_table_end(); |
12 | daniel-mar | 18 | echo '<a href="'.$_SERVER['PHP_SELF'].'?seite=edit&modul='.urlencode($modul).'&aktion=new">Neue Tabelle hinzufügen</a>'; |
19 | echo '<br><a href="'.$_SERVER['PHP_SELF'].'?seite=edit&modul=user_ordner&aktion=new&kategorie='.urlencode($modul).'">Einen neuen Ordner hinzufügen</a>'; |
||
20 | |||
21 | echo $footer; |
||
22 | |||
23 | ?> |