diff options
author | rxu <rxu@mail.ru> | 2014-02-05 22:47:31 +0800 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2014-02-18 10:51:34 +0800 |
commit | cab8181af165f05681756aaf9a4cfc460ef0429e (patch) | |
tree | 20811f70f86afd97855807381a910f0b7bf89224 /phpBB/styles/prosilver/template/quickreply_editor.html | |
parent | 9f923f235947b75260630234268d119179adda3e (diff) | |
download | forums-cab8181af165f05681756aaf9a4cfc460ef0429e.tar forums-cab8181af165f05681756aaf9a4cfc460ef0429e.tar.gz forums-cab8181af165f05681756aaf9a4cfc460ef0429e.tar.bz2 forums-cab8181af165f05681756aaf9a4cfc460ef0429e.tar.xz forums-cab8181af165f05681756aaf9a4cfc460ef0429e.zip |
[ticket/12166] Add template events to quickreply_editor.html.
Add template event pair - quickreply_editor_message_before
and quickreply_editor_message_before to
quickreply_editor.html for both of prosilver and subsilver2 styles.
This allows extensions to modify quick reply
postform. For example, to add BBCode buttons and/or smilies
and so on.
PHPBB3-12166
Diffstat (limited to 'phpBB/styles/prosilver/template/quickreply_editor.html')
-rw-r--r-- | phpBB/styles/prosilver/template/quickreply_editor.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/quickreply_editor.html b/phpBB/styles/prosilver/template/quickreply_editor.html index 83d253384e..774d013cd3 100644 --- a/phpBB/styles/prosilver/template/quickreply_editor.html +++ b/phpBB/styles/prosilver/template/quickreply_editor.html @@ -7,9 +7,11 @@ <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> </dl> + <!-- EVENT quickreply_editor_message_before --> <div id="message-box"> <textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea> </div> + <!-- EVENT quickreply_editor_message_after --> </fieldset> <fieldset class="submit-buttons"> {S_FORM_TOKEN} |