1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-06 14:35:56 +02:00

Merge pull request #2007 from rxu/ticket/12166

Add template events before/after the textbox in quickreply_editor.html.
This commit is contained in:
Nathan Guse 2014-02-18 12:27:43 -06:00
commit 69c119485a
3 changed files with 20 additions and 0 deletions

View File

@ -279,6 +279,22 @@ posting_editor_subject_before
* Since: 3.1.0-a2 * Since: 3.1.0-a2
* Purpose: Add field (e.g. textbox) to the posting screen before the subject * Purpose: Add field (e.g. textbox) to the posting screen before the subject
quickreply_editor_message_after
===
* Locations:
+ styles/prosilver/template/quickreply_editor.html
+ styles/subsilver2/template/quickreply_editor.html
* Since: 3.1.0-a4
* Purpose: Add content after the quick reply textbox
quickreply_editor_message_before
===
* Locations:
+ styles/prosilver/template/quickreply_editor.html
+ styles/subsilver2/template/quickreply_editor.html
* Since: 3.1.0-a4
* Purpose: Add content before the quick reply textbox
simple_footer_after simple_footer_after
=== ===
* Locations: * Locations:

View File

@ -7,9 +7,11 @@
<dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt> <dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt>
<dd><input type="text" name="subject" id="subject" size="45" maxlength="124" tabindex="2" value="{SUBJECT}" class="inputbox autowidth" /></dd> <dd><input type="text" name="subject" id="subject" size="45" maxlength="124" tabindex="2" value="{SUBJECT}" class="inputbox autowidth" /></dd>
</dl> </dl>
<!-- EVENT quickreply_editor_message_before -->
<div id="message-box"> <div id="message-box">
<textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea> <textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea>
</div> </div>
<!-- EVENT quickreply_editor_message_after -->
</fieldset> </fieldset>
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
{S_FORM_TOKEN} {S_FORM_TOKEN}

View File

@ -8,10 +8,12 @@
<td class="row1" width="22%"><b class="genmed">{L_SUBJECT}{L_COLON}</b></td> <td class="row1" width="22%"><b class="genmed">{L_SUBJECT}{L_COLON}</b></td>
<td class="row2" width="78%"><input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="124" tabindex="2" value="{SUBJECT}" /></td> <td class="row2" width="78%"><input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="124" tabindex="2" value="{SUBJECT}" /></td>
</tr> </tr>
<!-- EVENT quickreply_editor_message_before -->
<tr> <tr>
<td class="row1" width="22%"><b class="genmed">{L_MESSAGE}{L_COLON}</b></td> <td class="row1" width="22%"><b class="genmed">{L_MESSAGE}{L_COLON}</b></td>
<td class="row2" valign="top" align="left" width="78%"><textarea name="message" rows="7" cols="76" tabindex="3" style="width: 700px; height: 130px; min-width: 98%; max-width: 98%;"></textarea> </td> <td class="row2" valign="top" align="left" width="78%"><textarea name="message" rows="7" cols="76" tabindex="3" style="width: 700px; height: 130px; min-width: 98%; max-width: 98%;"></textarea> </td>
</tr> </tr>
<!-- EVENT quickreply_editor_message_after -->
<tr> <tr>
<td class="cat" colspan="2" align="center"> <td class="cat" colspan="2" align="center">
<input class="btnlite" type="submit" accesskey="f" tabindex="6" name="preview" value="{L_FULL_EDITOR}" />&nbsp; <input class="btnlite" type="submit" accesskey="f" tabindex="6" name="preview" value="{L_FULL_EDITOR}" />&nbsp;