1 | <script> | 1 | <script> |
2 | <!-- | 2 | <!-- |
3 | function check_form_convers(){ | 3 | function check_form_convers(){ |
4 | if(document.getElementById('login').value == "") { | 4 | if(document.getElementById('login').value == "") { |
5 | alert("{L_REQUIRE_RECIPIENT}"); | 5 | alert("{L_REQUIRE_RECIPIENT}"); |
6 | return false; | 6 | return false; |
7 | } | 7 | } |
8 | if(document.getElementById('contents').value == "") { | 8 | if(document.getElementById('contents').value == "") { |
9 | alert("{L_REQUIRE_MESSAGE}"); | 9 | alert("{L_REQUIRE_MESSAGE}"); |
10 | return false; | 10 | return false; |
11 | } | 11 | } |
12 | if(document.getElementById('title').value == "") { | 12 | if(document.getElementById('title').value == "") { |
13 | alert("{L_REQUIRE_TITLE}"); | 13 | alert("{L_REQUIRE_TITLE}"); |
14 | return false; | 14 | return false; |
15 | } | 15 | } |
16 | return true; | 16 | return true; |
17 | } | 17 | } |
18 | function check_form_pm(){ | 18 | function check_form_pm(){ |
19 | if(document.getElementById('contents').value == "") { | 19 | if(document.getElementById('contents').value == "") { |
20 | alert("{L_REQUIRE_MESSAGE}"); | 20 | alert("{L_REQUIRE_MESSAGE}"); |
21 | return false; | 21 | return false; |
22 | } | 22 | } |
23 | return true; | 23 | return true; |
24 | } | 24 | } |
25 | function Confirm_pm() { | 25 | function Confirm_pm() { |
26 | return confirm("{L_DELETE_MESSAGE}"); | 26 | return confirm("{L_DELETE_MESSAGE}"); |
27 | } | 27 | } |
28 | --> | 28 | --> |
29 | </script> | 29 | </script> |
30 | 30 | ||
31 | 31 | ||
32 | # START convers # | 32 | # START convers # |
33 | <script> | 33 | <script> |
34 | <!-- | 34 | <!-- |
35 | function check_convers(status, id) | 35 | function check_convers(status, id) |
36 | { | 36 | { |
37 | var i; | 37 | var i; |
38 | for(i = 0; i < {convers.NBR_PM}; i++) | 38 | for(i = 0; i < {convers.NBR_PM}; i++) |
39 | { | 39 | { |
40 | if( document.getElementById(id + i) ) | 40 | if( document.getElementById(id + i) ) |
41 | document.getElementById(id + i).checked = status; | 41 | document.getElementById(id + i).checked = status; |
42 | } | 42 | } |
43 | document.getElementById('checkall').checked = status; | 43 | document.getElementById('checkall').checked = status; |
44 | document.getElementById('validc').checked = status; | 44 | document.getElementById('validc').checked = status; |
45 | } | 45 | } |
46 | --> | 46 | --> |
47 | </script> | 47 | </script> |
48 | # INCLUDE message_helper # | 48 | # INCLUDE message_helper # |
49 | 49 | ||
50 | <form action="pm{convers.U_USER_ACTION_PM}" method="post" onsubmit="javascript:return Confirm_pm();"> | 50 | <form action="pm{convers.U_USER_ACTION_PM}" method="post" onsubmit="javascript:return Confirm_pm();"> |
51 | <section id="module-user-convers"> | 51 | <section id="module-user-convers"> |
52 | <header> | 52 | <header> |
53 | <h1>{convers.U_PM_BOX}</h1> | 53 | <h1>{convers.U_PM_BOX}</h1> |
54 | </header> | 54 | </header> |
55 | <div class="content"> | 55 | <div class="content"> |
56 | <div class="right">{L_PRIVATE_MSG}: {convers.PM_POURCENT}</div> | 56 | <div class="right">{L_PRIVATE_MSG}: {convers.PM_POURCENT}</div> |
57 | <br /><br /> | 57 | <div class="spacer"></div> |
58 | <nav id="cssmenu-pmactions" class="cssmenu cssmenu-group"> | 58 | <nav id="cssmenu-pmactions" class="cssmenu cssmenu-group"> |
59 | <ul> | 59 | <ul> |
60 | <li> | 60 | <li> |
61 | <a href="{convers.U_POST_NEW_CONVERS}" class="cssmenu-title"><i class="fa fa-plus"></i> {convers.L_POST_NEW_CONVERS}</a> | 61 | <a href="{convers.U_POST_NEW_CONVERS}" class="cssmenu-title"><i class="fa fa-plus" aria-hidden="true"></i> {convers.L_POST_NEW_CONVERS}</a> |
62 | </li> | 62 | </li> |
63 | <li> | 63 | <li> |
64 | <a href="{convers.U_MARK_AS_READ}" class="cssmenu-title"><i class="fa fa-eraser"></i> {convers.L_MARK_AS_READ}</a> | 64 | <a href="{convers.U_MARK_AS_READ}" class="cssmenu-title"><i class="fa fa-eraser" aria-hidden="true"></i> {convers.L_MARK_AS_READ}</a> |
65 | </li> | 65 | </li> |
66 | </ul> | 66 | </ul> |
67 | </nav> | 67 | </nav> |
68 | <script> | 68 | <script> |
69 | jQuery("#cssmenu-pmactions").menumaker({ | 69 | jQuery("#cssmenu-pmactions").menumaker({ |
70 | title: "${LangLoader::get_message('form.options', 'common')}", | 70 | title: "${LangLoader::get_message('form.options', 'common')}", |
71 | format: "multitoggle", | 71 | format: "multitoggle", |
72 | breakpoint: 768 | 72 | breakpoint: 768 |
73 | }); | 73 | }); |
74 | </script> | 74 | </script> |
75 | <br /><br /> | ||
76 | <table id="table"> | 75 | <table id="table"> |
77 | <thead> | 76 | <thead> |
78 | <tr> | 77 | <tr> |
79 | <th> | 78 | <th> |
80 | <i class="fa fa-envelope"></i> | 79 | <i class="fa fa-envelope"></i> |
81 | </th> | 80 | </th> |
82 | <th></th> | 81 | <th></th> |
83 | <th> | 82 | <th> |
84 | {L_TITLE} | 83 | {L_TITLE} |
85 | </th> | 84 | </th> |
86 | <th> | 85 | <th> |
87 | {L_PARTICIPANTS} | 86 | {L_PARTICIPANTS} |
88 | </th> | 87 | </th> |
89 | <th> | 88 | <th> |
90 | {L_MESSAGE} | 89 | {L_MESSAGE} |
91 | </th> | 90 | </th> |
92 | <th> | 91 | <th> |
93 | {L_LAST_MESSAGE} | 92 | {L_LAST_MESSAGE} |
94 | </th> | 93 | </th> |
95 | </tr> | 94 | </tr> |
96 | </thead> | 95 | </thead> |
97 | <tfoot> | ||
98 | <tr> | ||
99 | <td colspan="6"> | ||
100 | <div class="left"> <input type="checkbox" id="validc" onclick="check_convers(this.checked, 'd');" title="{L_SELECT_ALL_MESSAGES}" /> <input type="hidden" name="token" value="{TOKEN}"><button type="submit" name="valid" value="true" class="submit">{L_DELETE}</button></div> | ||
101 | # IF convers.C_PAGINATION #<div class="float-right"># INCLUDE convers.PAGINATION #</div># ENDIF # | ||
102 | </td> | ||
103 | </tr> | ||
104 | </tfoot> | ||
105 | <tbody> | 96 | <tbody> |
106 | # START convers.list # | 97 | # START convers.list # |
107 | <tr> | 98 | <tr> |
108 | <td> | 99 | <td> |
109 | <input type="checkbox" id="d{convers.list.INCR}" name="{convers.list.ID}"> | 100 | <input type="checkbox" id="d{convers.list.INCR}" name="{convers.list.ID}"> |
110 | </td> | 101 | </td> |
111 | <td class="convers-announce"> | 102 | <td class="convers-announce"> |
112 | <i class="fa fa-envelope {convers.list.ANNOUNCE}"></i> | 103 | <i class="fa fa-envelope {convers.list.ANNOUNCE}"></i> |
113 | </td> | 104 | </td> |
114 | <td class="convers-title no-separator"> | 105 | <td class="convers-title no-separator"> |
115 | {convers.list.ANCRE} <a href="pm{convers.list.U_CONVERS}">{convers.list.TITLE}</a> <span class="smaller">[{convers.list.U_AUTHOR}]</span> | 106 | {convers.list.ANCRE} <a href="pm{convers.list.U_CONVERS}">{convers.list.TITLE}</a> <span class="smaller">[{convers.list.U_AUTHOR}]</span> |
116 | </td> | 107 | </td> |
117 | <td> | 108 | <td> |
118 | {convers.list.U_PARTICIPANTS} | 109 | {convers.list.U_PARTICIPANTS} |
119 | </td> | 110 | </td> |
120 | <td> | 111 | <td> |
121 | {convers.list.MSG} | 112 | {convers.list.MSG} |
122 | </td> | 113 | </td> |
123 | <td class="smaller"> | 114 | <td class="smaller"> |
124 | {convers.list.U_LAST_MSG} | 115 | {convers.list.U_LAST_MSG} |
125 | </td> | 116 | </td> |
126 | </tr> | 117 | </tr> |
127 | # END convers.list # | 118 | # END convers.list # |
128 | 119 | ||
129 | # START convers.no_pm # | 120 | # START convers.no_pm # |
130 | <tr> | 121 | <tr> |
131 | <td colspan="6"> | 122 | <td colspan="6"> |
132 | <span class="text-strong">{convers.no_pm.L_NO_PM}</span> | 123 | <span class="text-strong">{convers.no_pm.L_NO_PM}</span> |
133 | </td> | 124 | </td> |
134 | </tr> | 125 | </tr> |
135 | # END convers.no_pm # | 126 | # END convers.no_pm # |
136 | </tbody> | 127 | </tbody> |
128 | <tfoot> | ||
129 | <tr> | ||
130 | <td colspan="6"> | ||
131 | <div class="left"> <input type="checkbox" id="validc" onclick="check_convers(this.checked, 'd');" title="{L_SELECT_ALL_MESSAGES}" /> <input type="hidden" name="token" value="{TOKEN}"><button type="submit" name="valid" value="true" class="submit">{L_DELETE}</button></div> | ||
132 | # IF convers.C_PAGINATION #<div class="float-right"># INCLUDE convers.PAGINATION #</div># ENDIF # | ||
133 | </td> | ||
134 | </tr> | ||
135 | </tfoot> | ||
137 | </table> | 136 | </table> |
138 | <br /> | 137 | |
139 | <table class="announce-legend"> | 138 | <table class="announce-legend"> |
140 | <tr> | 139 | <tr> |
141 | <td> | 140 | <td> |
142 | <i class="fa fa-envelope message-announce"></i> {L_READ} | 141 | <i class="fa fa-envelope message-announce" aria-hidden="true"></i> {L_READ} |
143 | </td> | 142 | </td> |
144 | <td class="no-separator"> | 143 | <td class="no-separator"> |
145 | <i class="fa fa-envelope message-announce-track"></i> {L_TRACK} | 144 | <i class="fa fa-envelope message-announce-track" aria-hidden="true"></i> {L_TRACK} |
146 | </td> | 145 | </td> |
147 | <td class="no-separator"> | 146 | <td class="no-separator"> |
148 | <i class="fa fa-envelope message-announce-new"></i> {L_NOT_READ} | 147 | <i class="fa fa-envelope message-announce-new" aria-hidden="true"></i> {L_NOT_READ} |
149 | </td> | 148 | </td> |
150 | </tr> | 149 | </tr> |
151 | </table> | 150 | </table> |
152 | </div> | 151 | </div> |
153 | <footer></footer> | 152 | <footer></footer> |
154 | </section> | 153 | </section> |
155 | </form> | 154 | </form> |
156 | # END convers # | 155 | # END convers # |
157 | 156 | ||
158 | # START pm # | 157 | # START pm # |
159 | <section id="module-user-pm"> | 158 | <section id="module-user-pm"> |
160 | <header> | 159 | <header> |
161 | <h1>{pm.U_PM_BOX} : {pm.U_TITLE_CONVERS}</h1> | 160 | <h1>{pm.U_PM_BOX} : {pm.U_TITLE_CONVERS}</h1> |
162 | </header> | 161 | </header> |
163 | 162 | ||
164 | <div class="content"> | 163 | <div class="content"> |
165 | # IF pm.C_PAGINATION #<div class="float-right"># INCLUDE pm.PAGINATION #</div># ENDIF # | 164 | # IF pm.C_PAGINATION #<div class="float-right"># INCLUDE pm.PAGINATION #</div># ENDIF # |
166 | 165 | ||
167 | # START pm.msg # | 166 | # START pm.msg # |
168 | <article id="article-pm-{pm.msg.ID}" class="article-pm article-several message"> | 167 | <article id="article-pm-{pm.msg.ID}" class="article-pm article-several message"> |
169 | <div id="m{pm.msg.ID}" class="message-container"> | 168 | <div id="m{pm.msg.ID}" class="message-container"> |
170 | 169 | ||
171 | <div class="message-user-infos"> | 170 | <div class="message-user-infos"> |
172 | <div class="message-pseudo"> | 171 | <div class="message-pseudo"> |
173 | # IF pm.msg.C_VISITOR # | 172 | # IF pm.msg.C_VISITOR # |
174 | <span>{pm.msg.PSEUDO}</span> | 173 | <span>{pm.msg.PSEUDO}</span> |
175 | # ELSE # | 174 | # ELSE # |
176 | <a href="{pm.msg.U_PROFILE}" class="{pm.msg.LEVEL_CLASS}" # IF pm.msg.C_GROUP_COLOR # style="color:{pm.msg.GROUP_COLOR}" # ENDIF #> | 175 | <a href="{pm.msg.U_PROFILE}" class="{pm.msg.LEVEL_CLASS}" # IF pm.msg.C_GROUP_COLOR # style="color:{pm.msg.GROUP_COLOR}" # ENDIF #> |
177 | {pm.msg.PSEUDO} | 176 | {pm.msg.PSEUDO} |
178 | </a> | 177 | </a> |
179 | # ENDIF # | 178 | # ENDIF # |
179 | <div class="message-level">{pm.msg.L_LEVEL}</div> | ||
180 | </div> | 180 | </div> |
181 | <div class="message-level">{pm.msg.L_LEVEL}</div> | ||
182 | # IF pm.msg.C_AVATAR #<img src="{pm.msg.USER_AVATAR}" title="{pm.msg.USER_PSEUDO}" alt="{pm.msg.USER_PSEUDO}" class="message-avatar" /># ENDIF # | 181 | # IF pm.msg.C_AVATAR #<img src="{pm.msg.USER_AVATAR}" title="{pm.msg.USER_PSEUDO}" alt="{pm.msg.USER_PSEUDO}" class="message-avatar" /># ENDIF # |
183 | </div> | 182 | </div> |
184 | 183 | ||
185 | <div class="message-date"> | 184 | <div class="message-date"> |
186 | <span class="actions"> | 185 | <span class="actions"> |
187 | <a href="#article-pm-{pm.msg.ID}">\#{pm.msg.ID}</a> | 186 | <a href="#article-pm-{pm.msg.ID}">\#{pm.msg.ID}</a> |
188 | # IF pm.msg.C_MODERATION_TOOLS # | 187 | # IF pm.msg.C_MODERATION_TOOLS # |
189 | <a href="pm.php?edit={pm.msg.ID}" title="{L_EDIT}" class="fa fa-edit"></a> | 188 | <a href="pm.php?edit={pm.msg.ID}" aria-label="{L_EDIT}"><i class="fa fa-edit" aria-hidden="true" title="{L_EDIT}"></i></a> |
190 | <a href="pm.php?del={pm.msg.ID}&token={TOKEN}" title="{L_DELETE}" class="fa fa-delete" data-confirmation="delete-element"></a> | 189 | <a href="pm.php?del={pm.msg.ID}&token={TOKEN}" data-confirmation="delete-element" aria-label="{L_DELETE}"><i class="fa fa-delete" aria-hidden="true" title="{L_DELETE}"></i></a> |
191 | # ENDIF # | 190 | # ENDIF # |
192 | </span> | 191 | </span> |
193 | <span>${LangLoader::get_message('on', 'main')} {pm.msg.DATE_FULL}</span> | 192 | <span>${LangLoader::get_message('on', 'main')} {pm.msg.DATE_FULL}</span> |
194 | </div> | 193 | </div> |
195 | 194 | ||
196 | <div class="message-message"> | 195 | <div class="message-message"> |
197 | <div class="message-content">{pm.msg.CONTENTS}</div> | 196 | <div class="message-content">{pm.msg.CONTENTS}</div> |
198 | </div> | 197 | </div> |
199 | 198 | ||
200 | </div> | 199 | </div> |
201 | </article> | 200 | </article> |
202 | # END pm.msg # | 201 | # END pm.msg # |
203 | </div> | 202 | </div> |
204 | <footer> | 203 | <footer> |
205 | # IF pm.C_PAGINATION #<div class="float-right"># INCLUDE pm.PAGINATION #</div># ENDIF # | 204 | # IF pm.C_PAGINATION #<div class="float-right"># INCLUDE pm.PAGINATION #</div># ENDIF # |
206 | </footer> | 205 | </footer> |
207 | </section> | 206 | </section> |
208 | # END pm # | 207 | # END pm # |
209 | 208 | ||
210 | # START post_pm # | 209 | # START post_pm # |
211 | # INCLUDE message_helper # | 210 | # INCLUDE message_helper # |
212 | <span id="quote"></span> | 211 | <span id="quote"></span> |
213 | <form action="pm{post_pm.U_PM_ACTION_POST}" method="post" onsubmit="return check_form_msg();" class="post-pm"> | 212 | <form action="pm{post_pm.U_PM_ACTION_POST}" method="post" onsubmit="return check_form_msg();" class="post-pm"> |
214 | <legend>{L_RESPOND}</legend> | 213 | <legend>{L_RESPOND}</legend> |
215 | <div class="form-element-textarea"> | 214 | <div class="form-element-textarea"> |
216 | {KERNEL_EDITOR} | 215 | {KERNEL_EDITOR} |
217 | <div class="form-field-textarea"> | 216 | <div class="form-field-textarea"> |
218 | <textarea rows="25" cols="66" id="contents" name="contents">{post_pm.CONTENTS}</textarea> | 217 | <textarea rows="25" cols="66" id="contents" name="contents">{post_pm.CONTENTS}</textarea> |
219 | </div> | 218 | </div> |
220 | </div> | 219 | </div> |
221 | <div class="center"> | 220 | <div class="center"> |
222 | <input type="hidden" name="token" value="{TOKEN}"> | 221 | <input type="hidden" name="token" value="{TOKEN}"> |
223 | <button type="submit" name="pm" value="true" class="submit">{L_SUBMIT}</button> | 222 | <button type="submit" name="pm" value="true" class="submit">{L_SUBMIT}</button> |
224 | <button type="button" name="prw" id="prw_pm" onclick="XMLHttpRequest_preview();">{L_PREVIEW}</button> | 223 | <button type="button" name="prw" id="prw_pm" onclick="XMLHttpRequest_preview();">{L_PREVIEW}</button> |
225 | <button type="reset" value="true">{L_RESET}</button> | 224 | <button type="reset" value="true">{L_RESET}</button> |
226 | </div> | 225 | </div> |
227 | </form> | 226 | </form> |
228 | # END post_pm # | 227 | # END post_pm # |
229 | 228 | ||
230 | 229 | ||
231 | # START edit_pm # | 230 | # START edit_pm # |
232 | <form action="pm{edit_pm.U_ACTION_EDIT}" method="post" onsubmit="return check_form_convers();"> | 231 | <form action="pm{edit_pm.U_ACTION_EDIT}" method="post" onsubmit="return check_form_convers();"> |
233 | <section id="module-user-edit-pm"> | 232 | <section id="module-user-edit-pm"> |
234 | <header> | 233 | <header> |
235 | <h1>{edit_pm.U_PM_BOX}</h1> | 234 | <h1>{edit_pm.U_PM_BOX}</h1> |
236 | </header> | 235 | </header> |
237 | <div class="content"> | 236 | <div class="content"> |
238 | <div class="fieldset-content"> | 237 | <div class="fieldset-content"> |
239 | <p class="center">{L_REQUIRE}</p> | 238 | <p class="center">{L_REQUIRE}</p> |
240 | <fieldset> | 239 | <fieldset> |
241 | <legend>{L_EDIT}</legend> | 240 | <legend>{L_EDIT}</legend> |
242 | # START edit_pm.title # | 241 | # START edit_pm.title # |
243 | <div class="form-element"> | 242 | <div class="form-element"> |
244 | <label for="title">* {L_TITLE}</label> | 243 | <label for="title">* {L_TITLE}</label> |
245 | <div class="form-field"><label><input type="text" maxlength="100" id="title" name="title" value="{edit_pm.title.TITLE}"></label></div> | 244 | <div class="form-field"><label><input type="text" maxlength="100" id="title" name="title" value="{edit_pm.title.TITLE}"></label></div> |
246 | </div> | 245 | </div> |
247 | # END edit_pm.title # | 246 | # END edit_pm.title # |
248 | <div class="form-element-textarea"> | 247 | <div class="form-element-textarea"> |
249 | <label for="contents">* {L_MESSAGE}</label> | 248 | <label for="contents">* {L_MESSAGE}</label> |
250 | {KERNEL_EDITOR} | 249 | {KERNEL_EDITOR} |
251 | <div class="form-field-textarea"> | 250 | <div class="form-field-textarea"> |
252 | <textarea rows="25" id="contents" name="contents">{edit_pm.CONTENTS}</textarea> | 251 | <textarea rows="25" id="contents" name="contents">{edit_pm.CONTENTS}</textarea> |
253 | </div> | 252 | </div> |
254 | </div> | 253 | </div> |
255 | </fieldset> | 254 | </fieldset> |
256 | 255 | ||
257 | <div class="center"> | 256 | <div class="center"> |
258 | <input type="hidden" name="token" value="{TOKEN}"> | 257 | <input type="hidden" name="token" value="{TOKEN}"> |
259 | <button type="submit" name="{SUBMIT_NAME}" value="{L_SUBMIT}" class="submit">{L_SUBMIT}</button> | 258 | <button type="submit" name="{SUBMIT_NAME}" value="{L_SUBMIT}" class="submit">{L_SUBMIT}</button> |
260 | <button type="button" name="prw" id="prw_pm" onclick="XMLHttpRequest_preview();">{L_PREVIEW}</button> | 259 | <button type="button" name="prw" id="prw_pm" onclick="XMLHttpRequest_preview();">{L_PREVIEW}</button> |
261 | <button type="reset" value="true">{L_RESET}</button> | 260 | <button type="reset" value="true">{L_RESET}</button> |
262 | </div> | 261 | </div> |
263 | </div> | 262 | </div> |
264 | </div> | 263 | </div> |
265 | <footer></footer> | 264 | <footer></footer> |
266 | </section> | 265 | </section> |
267 | </form> | 266 | </form> |
268 | # END edit_pm # | 267 | # END edit_pm # |
269 | 268 | ||
270 | 269 | ||
271 | # START post_convers # | 270 | # START post_convers # |
272 | <form action="pm.php" method="post" onsubmit="return check_form_convers();"> | 271 | <form action="pm.php" method="post" onsubmit="return check_form_convers();"> |
273 | <section id="module-user-post-convers"> | 272 | <section id="module-user-post-convers"> |
274 | <header> | 273 | <header> |
275 | <h1>{post_convers.U_PM_BOX}</h1> | 274 | <h1>{post_convers.U_PM_BOX}</h1> |
276 | </header> | 275 | </header> |
277 | <div class="content"> | 276 | <div class="content"> |
278 | # INCLUDE message_helper # | 277 | # INCLUDE message_helper # |
279 | 278 | ||
280 | <div class="fieldset-content"> | 279 | <div class="fieldset-content"> |
281 | <p class="center">{L_REQUIRE}</p> | 280 | <p class="center">{L_REQUIRE}</p> |
282 | <fieldset> | 281 | <fieldset> |
283 | <legend>{L_POST_NEW_CONVERS}</legend> | 282 | <legend>{L_POST_NEW_CONVERS}</legend> |
284 | # START post_convers.user_id_dest # | 283 | # START post_convers.user_id_dest # |
285 | <div class="form-element"> | 284 | <div class="form-element"> |
286 | <label for="login">* {L_RECIPIENT}</label> | 285 | <label for="login">* {L_RECIPIENT}</label> |
287 | <div class="form-field"> | 286 | <div class="form-field"> |
288 | <label> | 287 | <label> |
289 | <input type="text" maxlength="25" id="login" name="login" value="{post_convers.LOGIN}"> | 288 | <input type="text" maxlength="25" id="login" name="login" value="{post_convers.LOGIN}"> |
290 | <button type="button" value="{L_SEARCH}" onclick="XMLHttpRequest_search_members('', '{THEME}', 'insert_member', '{L_REQUIRE_RECIPIENT}');">{L_SEARCH}</button> | 289 | <button type="button" value="{L_SEARCH}" onclick="XMLHttpRequest_search_members('', '{THEME}', 'insert_member', '{L_REQUIRE_RECIPIENT}');">{L_SEARCH}</button> |
291 | <span id="search_img"></span> | 290 | <span id="search_img"></span> |
292 | </label> | 291 | </label> |
293 | <div id="xmlhttprequest-result-search" style="display: none;" class="xmlhttprequest-result-search"></div> | 292 | <div id="xmlhttprequest-result-search" style="display: none;" class="xmlhttprequest-result-search"></div> |
294 | # START post_convers.user_id_dest.search # | 293 | # START post_convers.user_id_dest.search # |
295 | {post_convers.user_id_dest.search.RESULT} | 294 | {post_convers.user_id_dest.search.RESULT} |
296 | # END post_convers.user_id_dest.search # | 295 | # END post_convers.user_id_dest.search # |
297 | </div> | 296 | </div> |
298 | </div> | 297 | </div> |
299 | # END post_convers.user_id_dest # | 298 | # END post_convers.user_id_dest # |
300 | <div class="form-element"> | 299 | <div class="form-element"> |
301 | <label for="title">* {L_TITLE}</label> | 300 | <label for="title">* {L_TITLE}</label> |
302 | <div class="form-field"><label><input type="text" maxlength="100" id="title" name="title" value="{post_convers.TITLE}"></label></div> | 301 | <div class="form-field"><label><input type="text" maxlength="100" id="title" name="title" value="{post_convers.TITLE}"></label></div> |
303 | </div> | 302 | </div> |
304 | <div class="form-element-textarea"> | 303 | <div class="form-element-textarea"> |
305 | <label for="contents">* {L_MESSAGE}</label> | 304 | <label for="contents">* {L_MESSAGE}</label> |
306 | {KERNEL_EDITOR} | 305 | {KERNEL_EDITOR} |
307 | <div class="form-field-textarea"> | 306 | <div class="form-field-textarea"> |
308 | <textarea rows="25" id="contents" name="contents">{CONTENTS}</textarea> | 307 | <textarea rows="25" id="contents" name="contents">{CONTENTS}</textarea> |
309 | </div> | 308 | </div> |
310 | </div> | 309 | </div> |
311 | </fieldset> | 310 | </fieldset> |
312 | 311 | ||
313 | <div class="center"> | 312 | <div class="center"> |
314 | <input type="hidden" name="token" value="{TOKEN}"> | 313 | <input type="hidden" name="token" value="{TOKEN}"> |
315 | <button type="submit" name="convers" value="true" class="submit">{L_SUBMIT}</button> | 314 | <button type="submit" name="convers" value="true" class="submit">{L_SUBMIT}</button> |
316 | <button type="button" name="prw_convers" id="prw_convers_pm" onclick="XMLHttpRequest_preview();">{L_PREVIEW}</button> | 315 | <button type="button" name="prw_convers" id="prw_convers_pm" onclick="XMLHttpRequest_preview();">{L_PREVIEW}</button> |
317 | <button type="reset" value="true">{L_RESET}</button> | 316 | <button type="reset" value="true">{L_RESET}</button> |
318 | </div> | 317 | </div> |
319 | </div> | 318 | </div> |
320 | </div> | 319 | </div> |
321 | <footer></footer> | 320 | <footer></footer> |
322 | </section> | 321 | </section> |
323 | </form> | 322 | </form> |
324 | # END post_convers # | 323 | # END post_convers # |