[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <!-- INCLUDE ucp_header.html --> 2 3 <!-- INCLUDE ucp_pm_message_header.html --> 4 5 </div> 6 </div> 7 8 9 <!-- IF S_DISPLAY_HISTORY and (U_VIEW_PREVIOUS_HISTORY or U_VIEW_NEXT_HISTORY) --> 10 <fieldset class="display-options clearfix"> 11 <!-- IF U_VIEW_PREVIOUS_HISTORY --> 12 <a href="{U_VIEW_PREVIOUS_HISTORY}" class="left-box arrow-{S_CONTENT_FLOW_BEGIN}"> 13 <i class="icon fa-angle-{S_CONTENT_FLOW_BEGIN} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_PREVIOUS_HISTORY}</span> 14 </a> 15 <!-- ENDIF --> 16 <!-- IF U_VIEW_NEXT_HISTORY --> 17 <a href="{U_VIEW_NEXT_HISTORY}" class="right-box arrow-{S_CONTENT_FLOW_END}"> 18 <i class="icon fa-angle-{S_CONTENT_FLOW_END} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_NEXT_HISTORY}</span> 19 </a> 20 <!-- ENDIF --> 21 </fieldset> 22 <!-- ENDIF --> 23 24 25 <div id="post-{MESSAGE_ID}" class="post pm has-profile<!-- IF S_ONLINE --> online<!-- ENDIF -->"> 26 <div class="inner"> 27 28 <dl class="postprofile" id="profile{MESSAGE_ID}"> 29 <dt class="<!-- IF RANK_TITLE or RANK_IMG -->has-profile-rank<!-- ELSE -->no-profile-rank<!-- ENDIF --> <!-- IF AUTHOR_AVATAR -->has-avatar<!-- ELSE -->no-avatar<!-- ENDIF -->"> 30 <div class="avatar-container"> 31 <!-- EVENT ucp_pm_viewmessage_avatar_before --> 32 <!-- IF AUTHOR_AVATAR --><a href="{U_MESSAGE_AUTHOR}" class="avatar">{AUTHOR_AVATAR}</a><!-- ENDIF --> 33 <!-- EVENT ucp_pm_viewmessage_avatar_after --> 34 </div> 35 {% EVENT ucp_pm_viewmessage_author_full_before %} 36 {MESSAGE_AUTHOR_FULL} 37 {% EVENT ucp_pm_viewmessage_author_full_after %} 38 </dt> 39 40 <!-- EVENT ucp_pm_viewmessage_rank_before --> 41 <!-- IF RANK_TITLE or RANK_IMG --><dd class="profile-rank">{RANK_TITLE}<!-- IF RANK_TITLE and RANK_IMG --><br /><!-- ENDIF -->{RANK_IMG}</dd><!-- ENDIF --> 42 <!-- EVENT ucp_pm_viewmessage_rank_after --> 43 44 <dd class="profile-posts"><strong>{L_POSTS}{L_COLON}</strong> <!-- IF U_AUTHOR_POSTS != '' --><a href="{U_AUTHOR_POSTS}">{AUTHOR_POSTS}</a><!-- ELSE -->{AUTHOR_POSTS}<!-- ENDIF --></dd> 45 <!-- IF AUTHOR_JOINED --><dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {AUTHOR_JOINED}</dd><!-- ENDIF --> 46 47 <!-- EVENT ucp_pm_viewmessage_custom_fields_before --> 48 <!-- BEGIN custom_fields --> 49 <!-- IF not custom_fields.S_PROFILE_CONTACT --> 50 <dd class="profile-custom-field profile-{custom_fields.PROFILE_FIELD_IDENT}"><strong>{custom_fields.PROFILE_FIELD_NAME}{L_COLON}</strong> {custom_fields.PROFILE_FIELD_VALUE}</dd> 51 <!-- ENDIF --> 52 <!-- END custom_fields --> 53 <!-- EVENT ucp_pm_viewmessage_custom_fields_after --> 54 55 <!-- EVENT ucp_pm_viewmessage_contact_fields_before --> 56 <!-- IF .contact --> 57 <dd class="profile-contact"> 58 <strong>{L_CONTACT}{L_COLON}</strong> 59 <div class="dropdown-container dropdown-left"> 60 <a href="#" class="dropdown-trigger" title="{CONTACT_USER}"><i class="icon fa-commenting-o fa-fw icon-lg" aria-hidden="true"></i><span class="sr-only">{CONTACT_USER}</span></a> 61 <div class="dropdown"> 62 <div class="pointer"><div class="pointer-inner"></div></div> 63 <div class="dropdown-contents contact-icons"> 64 <!-- BEGIN contact --> 65 {% set REMAINDER = contact.S_ROW_COUNT % 4 %} 66 <!-- DEFINE $S_LAST_CELL = ((REMAINDER eq 3) or (contact.S_LAST_ROW and contact.S_NUM_ROWS < 4)) --> 67 <!-- IF REMAINDER eq 0 --> 68 <div> 69 <!-- ENDIF --> 70 <a href="<!-- IF contact.U_CONTACT -->{contact.U_CONTACT}<!-- ELSE -->{contact.U_PROFILE_AUTHOR}<!-- ENDIF -->" title="{contact.NAME}"<!-- IF $S_LAST_CELL --> class="last-cell"<!-- ENDIF --><!-- IF contact.ID eq 'jabber' --> onclick="popup(this.href, 750, 320); return false;"<!-- ENDIF -->> 71 <span class="contact-icon {contact.ID}-icon">{contact.NAME}</span> 72 </a> 73 <!-- IF REMAINDER eq 3 or contact.S_LAST_ROW --> 74 </div> 75 <!-- ENDIF --> 76 <!-- END contact --> 77 </div> 78 </div> 79 </div> 80 </dd> 81 <!-- ENDIF --> 82 <!-- EVENT ucp_pm_viewmessage_contact_fields_after --> 83 </dl> 84 85 <div class="postbody"> 86 <h3 class="first">{SUBJECT}</h3> 87 88 <!-- DEFINE $SHOW_PM_POST_BUTTONS = (U_EDIT or U_DELETE or U_REPORT or U_QUOTE) --> 89 <!-- EVENT ucp_pm_viewmessage_post_buttons_list_before --> 90 <!-- IF $SHOW_PM_POST_BUTTONS --> 91 <ul class="post-buttons"> 92 <!-- EVENT ucp_pm_viewmessage_post_buttons_before --> 93 <!-- IF U_EDIT --> 94 <li> 95 <a href="{U_EDIT}" title="{L_POST_EDIT_PM}" class="button button-icon-only"> 96 <i class="icon fa-pencil fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_EDIT}</span> 97 </a> 98 </li> 99 <!-- ENDIF --> 100 <!-- IF U_DELETE --> 101 <li> 102 <a href="{U_DELETE}" title="{L_DELETE_MESSAGE}" class="button button-icon-only"> 103 <i class="icon fa-times fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_DELETE}</span> 104 </a> 105 </li> 106 <!-- ENDIF --> 107 <!-- IF U_REPORT --> 108 <li> 109 <a href="{U_REPORT}" title="{L_REPORT_PM}" class="button button-icon-only"> 110 <i class="icon fa-exclamation fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_REPORT}</span> 111 </a> 112 </li> 113 <!-- ENDIF --> 114 <!-- IF U_QUOTE --> 115 <li> 116 <a href="{U_QUOTE}" title="{L_POST_QUOTE_PM}" class="button button-icon-only"> 117 <i class="icon fa-quote-left fa-fw" aria-hidden="true"></i><span class="sr-only">{L_BUTTON_QUOTE}</span> 118 </a> 119 </li> 120 <!-- ENDIF --> 121 <!-- EVENT ucp_pm_viewmessage_post_buttons_after --> 122 </ul> 123 <!-- ENDIF --> 124 <!-- EVENT ucp_pm_viewmessage_post_buttons_list_after --> 125 126 <p class="author"> 127 <strong>{L_SENT_AT}{L_COLON}</strong> {SENT_DATE} 128 <br /><strong>{L_PM_FROM}{L_COLON}</strong> {MESSAGE_AUTHOR_FULL} 129 <!-- IF S_TO_RECIPIENT --><br /><strong>{L_TO}{L_COLON}</strong> <!-- BEGIN to_recipient --><!-- IF to_recipient.NAME_FULL -->{to_recipient.NAME_FULL}<!-- ELSE --><a href="{to_recipient.U_VIEW}"<!-- IF to_recipient.COLOUR --> style="color:{to_recipient.COLOUR};"<!-- ENDIF -->><strong>{to_recipient.NAME}</strong></a><!-- ENDIF --> <!-- END to_recipient --><!-- ENDIF --> 130 <!-- IF S_BCC_RECIPIENT --><br /><strong>{L_BCC}{L_COLON}</strong> <!-- BEGIN bcc_recipient --><!-- IF bcc_recipient.NAME_FULL -->{bcc_recipient.NAME_FULL}<!-- ELSE --><a href="{bcc_recipient.U_VIEW}"<!-- IF bcc_recipient.COLOUR --> style="color:{bcc_recipient.COLOUR};"<!-- ENDIF -->><strong>{bcc_recipient.NAME}</strong></a><!-- ENDIF --> <!-- END bcc_recipient --><!-- ENDIF --> 131 </p> 132 133 134 <div class="content">{MESSAGE}</div> 135 136 <!-- IF S_HAS_ATTACHMENTS --> 137 <dl class="attachbox"> 138 <dt> 139 {L_ATTACHMENTS} 140 </dt> 141 <!-- BEGIN attachment --> 142 <dd>{attachment.DISPLAY_ATTACHMENT}</dd> 143 <!-- END attachment --> 144 </dl> 145 <!-- ENDIF --> 146 147 <!-- IF S_DISPLAY_NOTICE --> 148 <div class="post-notice error">{L_DOWNLOAD_NOTICE}</div> 149 <!-- ENDIF --> 150 151 <!-- IF EDITED_MESSAGE or EDIT_REASON --> 152 <div class="notice">{EDITED_MESSAGE} 153 <!-- IF EDIT_REASON --><br /><strong>{L_REASON}{L_COLON}</strong> <em>{EDIT_REASON}</em><!-- ENDIF --> 154 </div> 155 <!-- ENDIF --> 156 157 <!-- IF SIGNATURE --> 158 <div id="sig{MESSAGE_ID}" class="signature">{SIGNATURE}</div> 159 <!-- ENDIF --> 160 </div> 161 162 <div class="back2top"> 163 <a href="#top" class="top" title="{L_BACK_TO_TOP}"> 164 <i class="icon fa-chevron-circle-up fa-fw icon-gray" aria-hidden="true"></i> 165 <span class="sr-only">{L_BACK_TO_TOP}</span> 166 </a> 167 </div> 168 169 </div> 170 </div> 171 172 <!-- EVENT ucp_pm_viewmessage_options_before --> 173 <!-- IF S_VIEW_MESSAGE --> 174 <fieldset class="display-options"> 175 176 <!-- IF S_MARK_OPTIONS --><label for="mark_option"><select name="mark_option" id="mark_option">{S_MARK_OPTIONS}</select></label> <input class="button2" type="submit" name="submit_mark" value="{L_GO}" /><!-- ENDIF --> 177 <!-- IF U_PREVIOUS_PM --> 178 <a href="{U_PREVIOUS_PM}" class="left-box arrow-{S_CONTENT_FLOW_BEGIN}"> 179 <i class="icon fa-angle-{S_CONTENT_FLOW_BEGIN} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_PREVIOUS_PM}</span> 180 </a> 181 <!-- ENDIF --> 182 <!-- IF U_NEXT_PM --> 183 <a href="{U_NEXT_PM}" class="right-box arrow-{S_CONTENT_FLOW_END}"> 184 <i class="icon fa-angle-{S_CONTENT_FLOW_END} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_NEXT_PM}</span> 185 </a> 186 <!-- ENDIF --> 187 <!-- IF not S_UNREAD and not S_SPECIAL_FOLDER --><label for="dest_folder"><!-- IF S_VIEW_MESSAGE -->{L_MOVE_TO_FOLDER}{L_COLON} <!-- ELSE -->{L_MOVE_MARKED_TO_FOLDER}<!-- ENDIF --> <select name="dest_folder" id="dest_folder">{S_TO_FOLDER_OPTIONS}</select></label> <input class="button2" type="submit" name="move_pm" value="{L_GO}" /><!-- ENDIF --> 188 <input type="hidden" name="marked_msg_id[]" value="{MSG_ID}" /> 189 <input type="hidden" name="cur_folder_id" value="{CUR_FOLDER_ID}" /> 190 <input type="hidden" name="p" value="{MSG_ID}" /> 191 </fieldset> 192 <!-- ENDIF --> 193 194 <!-- INCLUDE ucp_pm_message_footer.html --> 195 196 <!-- IF S_DISPLAY_HISTORY --><!-- INCLUDE ucp_pm_history.html --><!-- ENDIF --> 197 198 <!-- INCLUDE ucp_footer.html -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |