Verzeichnisstruktur phpBB-3.0.0


Veröffentlicht
12.12.2007

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

ucp_pm_viewmessage.html

Zuletzt modifiziert: 09.10.2024, 12:53 - Dateigröße: 3.73 KiB


001  <!-- INCLUDE ucp_header.html -->
002   
003  <div id="pagecontent">
004   
005  <!-- INCLUDE ucp_pm_message_header.html -->
006  <div style="padding: 2px;"></div>
007   
008  <table class="tablebg" width="100%" cellspacing="1" cellpadding="4">
009   
010  <tr class="row1">
011      <td class="genmed" nowrap="nowrap" width="150"><b>{L_PM_SUBJECT}:</b></td>
012      <td class="gen">{SUBJECT}</td>
013  </tr>
014   
015  <tr class="row1">
016      <td class="genmed" nowrap="nowrap" width="150"><b>{L_PM_FROM}:</b></td>
017      <td class="gen">{MESSAGE_AUTHOR_FULL}</td>
018  </tr>
019   
020  <tr class="row1">
021      <td class="genmed" nowrap="nowrap" width="150"><b>{L_SENT_AT}:</b></td>
022      <td class="gen">{SENT_DATE}</td>
023  </tr>
024   
025  <!-- IF S_TO_RECIPIENT -->
026      <tr class="row1">
027          <td class="genmed" nowrap="nowrap" width="150"><b>{L_TO}:</b></td>
028          <td class="gen">
029          <!-- BEGIN to_recipient -->
030              <!-- IF to_recipient.IS_GROUP --><span class="sep"><a href="{to_recipient.U_VIEW}">{to_recipient.NAME}</a></span><!-- ELSE -->{to_recipient.NAME_FULL}&nbsp;<!-- ENDIF -->
031          <!-- END to_recipient -->
032          </td>
033      </tr>
034  <!-- ENDIF -->
035   
036  <!-- IF S_BCC_RECIPIENT -->
037      <tr class="row1">
038          <td class="genmed" nowrap="nowrap" width="150"><b>{L_BCC}:</b></td>
039          <td class="gen">
040          <!-- BEGIN bcc_recipient -->
041              <!-- IF bcc_recipient.IS_GROUP --><span class="sep"><a href="{bcc_recipient.U_VIEW}">{bcc_recipient.NAME}</a></span><!-- ELSE -->{bcc_recipient.NAME_FULL}&nbsp;<!-- ENDIF -->
042          <!-- END bcc_recipient -->
043          </td>
044      </tr>
045  <!-- ENDIF -->
046  </table>
047   
048  <div style="padding: 2px;"></div>
049   
050  <table class="tablebg" width="100%" cellspacing="1" cellpadding="0">
051   
052  <tr>
053      <th nowrap="nowrap">{L_MESSAGE}</th>
054  </tr>
055   
056  <tr>
057      <td class="spacer" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
058  </tr>
059   
060  <tr class="row1">
061      <td valign="top">
062          <table width="100%" cellspacing="5">
063          <tr>
064              <td>
065                  <div class="postbody">{MESSAGE}</div>
066   
067                  <!-- IF S_HAS_ATTACHMENTS -->
068                      <br clear="all" /><br />
069                              
070                      <table class="tablebg" width="100%" cellspacing="1">
071                      <tr>
072                          <td class="row3"><b class="genmed">{L_ATTACHMENTS}: </b></td>
073                      </tr>
074                      <!-- BEGIN attachment -->
075                          <tr>
076                              <td class="row2">{attachment.DISPLAY_ATTACHMENT}</td>
077                          </tr>
078                      <!-- END attachment -->
079                      </table>
080                  <!-- ENDIF -->
081   
082                  <!-- IF S_DISPLAY_NOTICE -->
083                      <span class="gensmall error"><br /><br />{L_DOWNLOAD_NOTICE}</span>
084                  <!-- ENDIF -->
085                  <!-- IF SIGNATURE -->
086                      <span class="postbody"><br />_________________<br />{SIGNATURE}</span>
087                  <!-- ENDIF -->
088                  <!-- IF EDITED_MESSAGE -->
089                      <span class="gensmall">{EDITED_MESSAGE}</span>
090                  <!-- ENDIF -->
091   
092                  <!-- IF not S_HAS_ATTACHMENTS --><br clear="all" /><br /><!-- ENDIF -->
093   
094                  <table width="100%" cellspacing="0">
095                  <tr valign="middle">
096                      <td class="gensmall" align="{S_CONTENT_FLOW_END}"> <!-- IF U_DELETE --><a href="{U_DELETE}">{DELETE_IMG}</a> <!-- ENDIF --></td>
097                  </tr>
098                  </table>
099   
100              </td>
101          </tr>
102          </table>
103      </td>
104  </tr>
105   
106  <tr class="row1">
107      <td><div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};">&nbsp;<!-- IF U_MESSAGE_AUTHOR --><a href="{U_MESSAGE_AUTHOR}">{PROFILE_IMG}</a> <!-- ENDIF --> <!-- IF U_EMAIL --><a href="{U_EMAIL}">{EMAIL_IMG}</a> <!-- ENDIF -->&nbsp;</div> <div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><!-- IF U_EDIT --><a href="{U_EDIT}">{EDIT_IMG}</a> <!-- ENDIF --> <!-- IF U_QUOTE --><a href="{U_QUOTE}">{QUOTE_IMG}</a> <!-- ENDIF --> <!-- IF U_POST_REPLY_PM --><a href="{U_POST_REPLY_PM}">{REPLY_IMG}</a><!-- ENDIF -->&nbsp;</div></td>
108  </tr>
109   
110  <tr>
111      <td class="spacer" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
112  </tr>
113  </table>
114   
115  <div style="padding: 2px;"></div>
116  <!-- INCLUDE ucp_pm_message_footer.html -->
117   
118  <br clear="all" />
119   
120  </div>
121   
122  <!-- IF S_DISPLAY_HISTORY --><!-- INCLUDE ucp_pm_history.html --><!-- ENDIF -->
123   
124  <!-- INCLUDE ucp_footer.html -->
125