Verzeichnisstruktur phpBB-2.0.0


Veröffentlicht
03.04.2002

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

index_body.tpl

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 3.95 KiB


01   
02  <h1>{L_WELCOME}</h1>
03   
04  <p>{L_ADMIN_INTRO}</p>
05   
06  <h1>{L_FORUM_STATS}</h1>
07   
08  <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
09    <tr> 
10      <th width="25%" nowrap="nowrap" height="25" class="thCornerL">{L_STATISTIC}</th>
11      <th width="25%" height="25" class="thTop">{L_VALUE}</th>
12      <th width="25%" nowrap="nowrap" height="25" class="thTop">{L_STATISTIC}</th>
13      <th width="25%" height="25" class="thCornerR">{L_VALUE}</th>
14    </tr>
15    <tr> 
16      <td class="row1" nowrap="nowrap">{L_NUMBER_POSTS}:</td>
17      <td class="row2"><b>{NUMBER_OF_POSTS}</b></td>
18      <td class="row1" nowrap="nowrap">{L_POSTS_PER_DAY}:</td>
19      <td class="row2"><b>{POSTS_PER_DAY}</b></td>
20    </tr>
21    <tr> 
22      <td class="row1" nowrap="nowrap">{L_NUMBER_TOPICS}:</td>
23      <td class="row2"><b>{NUMBER_OF_TOPICS}</b></td>
24      <td class="row1" nowrap="nowrap">{L_TOPICS_PER_DAY}:</td>
25      <td class="row2"><b>{TOPICS_PER_DAY}</b></td>
26    </tr>
27    <tr> 
28      <td class="row1" nowrap="nowrap">{L_NUMBER_USERS}:</td>
29      <td class="row2"><b>{NUMBER_OF_USERS}</b></td>
30      <td class="row1" nowrap="nowrap">{L_USERS_PER_DAY}:</td>
31      <td class="row2"><b>{USERS_PER_DAY}</b></td>
32    </tr>
33    <tr> 
34      <td class="row1" nowrap="nowrap">{L_BOARD_STARTED}:</td>
35      <td class="row2"><b>{START_DATE}</b></td>
36      <td class="row1" nowrap="nowrap">{L_AVATAR_DIR_SIZE}:</td>
37      <td class="row2"><b>{AVATAR_DIR_SIZE}</b></td>
38    </tr>
39    <tr> 
40      <td class="row1" nowrap="nowrap">{L_DB_SIZE}:</td>
41      <td class="row2"><b>{DB_SIZE}</b></td>
42      <td class="row1" nowrap="nowrap">{L_GZIP_COMPRESSION}:</td>
43      <td class="row2"><b>{GZIP_COMPRESSION}</b></td>
44    </tr>
45  </table>
46   
47  <h1>{L_VERSION_INFORMATION}</h1>
48   
49  {VERSION_INFO}
50   
51  <br />
52   
53  <h1>{L_WHO_IS_ONLINE}</h1>
54   
55  <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
56    <tr> 
57      <th width="20%" class="thCornerL" height="25">&nbsp;{L_USERNAME}&nbsp;</th>
58      <th width="20%" height="25" class="thTop">&nbsp;{L_STARTED}&nbsp;</th>
59      <th width="20%" class="thTop">&nbsp;{L_LAST_UPDATE}&nbsp;</th>
60      <th width="20%" class="thCornerR">&nbsp;{L_FORUM_LOCATION}&nbsp;</th>
61      <th width="20%" height="25" class="thCornerR">&nbsp;{L_IP_ADDRESS}&nbsp;</th>
62    </tr>
63    <!-- BEGIN reg_user_row -->
64    <tr> 
65      <td width="20%" class="{reg_user_row.ROW_CLASS}">&nbsp;<span class="gen"><a href="{reg_user_row.U_USER_PROFILE}" class="gen">{reg_user_row.USERNAME}</a></span>&nbsp;</td>
66      <td width="20%" align="center" class="{reg_user_row.ROW_CLASS}">&nbsp;<span class="gen">{reg_user_row.STARTED}</span>&nbsp;</td>
67      <td width="20%" align="center" nowrap="nowrap" class="{reg_user_row.ROW_CLASS}">&nbsp;<span class="gen">{reg_user_row.LASTUPDATE}</span>&nbsp;</td>
68      <td width="20%" class="{reg_user_row.ROW_CLASS}">&nbsp;<span class="gen"><a href="{reg_user_row.U_FORUM_LOCATION}" class="gen">{reg_user_row.FORUM_LOCATION}</a></span>&nbsp;</td>
69      <td width="20%" class="{reg_user_row.ROW_CLASS}">&nbsp;<span class="gen"><a href="{reg_user_row.U_WHOIS_IP}" class="gen" target="_phpbbwhois">{reg_user_row.IP_ADDRESS}</a></span>&nbsp;</td>
70    </tr>
71    <!-- END reg_user_row -->
72    <tr> 
73      <td colspan="5" height="1" class="row3"><img src="../templates/subSilver/images/spacer.gif" width="1" height="1" alt="."></td>
74    </tr>
75    <!-- BEGIN guest_user_row -->
76    <tr> 
77      <td width="20%" class="{guest_user_row.ROW_CLASS}">&nbsp;<span class="gen">{guest_user_row.USERNAME}</span>&nbsp;</td>
78      <td width="20%" align="center" class="{guest_user_row.ROW_CLASS}">&nbsp;<span class="gen">{guest_user_row.STARTED}</span>&nbsp;</td>
79      <td width="20%" align="center" nowrap="nowrap" class="{guest_user_row.ROW_CLASS}">&nbsp;<span class="gen">{guest_user_row.LASTUPDATE}</span>&nbsp;</td>
80      <td width="20%" class="{guest_user_row.ROW_CLASS}">&nbsp;<span class="gen"><a href="{guest_user_row.U_FORUM_LOCATION}" class="gen">{guest_user_row.FORUM_LOCATION}</a></span>&nbsp;</td>
81      <td width="20%" class="{guest_user_row.ROW_CLASS}">&nbsp;<span class="gen"><a href="{guest_user_row.U_WHOIS_IP}" target="_phpbbwhois">{guest_user_row.IP_ADDRESS}</a></span>&nbsp;</td>
82    </tr>
83    <!-- END guest_user_row -->
84  </table>
85   
86  <br />
87