diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-03-29 12:17:37 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-03-29 12:17:37 +0100 |
commit | f3e9fe6de8016cd41257a081601da25aab70cb75 (patch) | |
tree | 770f273351731dd6d7ac7eb47b479ae41371fd2d | |
parent | 7f6aff1d097ae674054233b66ce037df547c516e (diff) | |
parent | 0d84a42cd406dfa2f5b7fd511305abb3d7d6c35e (diff) | |
download | forums-f3e9fe6de8016cd41257a081601da25aab70cb75.tar forums-f3e9fe6de8016cd41257a081601da25aab70cb75.tar.gz forums-f3e9fe6de8016cd41257a081601da25aab70cb75.tar.bz2 forums-f3e9fe6de8016cd41257a081601da25aab70cb75.tar.xz forums-f3e9fe6de8016cd41257a081601da25aab70cb75.zip |
Merge branch 'ticket/paybas/12309' into develop-ascraeus
* ticket/paybas/12309:
[ticket/12309] Template Event quickreply_editor_panel_before/after
-rw-r--r-- | phpBB/docs/events.md | 16 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/quickreply_editor.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/quickreply_editor.html | 4 |
3 files changed, 20 insertions, 2 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index dfefc0c1ea..8d8854d689 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -319,6 +319,22 @@ posting_editor_subject_before * Since: 3.1.0-a2 * Purpose: Add field (e.g. textbox) to the posting screen before the subject +quickreply_editor_panel_after +=== +* Locations: + + styles/prosilver/template/quickreply_editor.html + + styles/subsilver2/template/quickreply_editor.html +* Since: 3.1.0-b2 +* Purpose: Add content after the quick reply panel (but inside the form) + +quickreply_editor_panel_before +=== +* Locations: + + styles/prosilver/template/quickreply_editor.html + + styles/subsilver2/template/quickreply_editor.html +* Since: 3.1.0-b2 +* Purpose: Add content before the quick reply panel (but inside the form) + quickreply_editor_message_after === * Locations: diff --git a/phpBB/styles/prosilver/template/quickreply_editor.html b/phpBB/styles/prosilver/template/quickreply_editor.html index 774d013cd3..8da9919db8 100644 --- a/phpBB/styles/prosilver/template/quickreply_editor.html +++ b/phpBB/styles/prosilver/template/quickreply_editor.html @@ -1,4 +1,5 @@ <form method="post" action="{U_QR_ACTION}" id="qr_postform"> +<!-- EVENT quickreply_editor_panel_before --> <div class="panel"> <div class="inner"> <h2>{L_QUICKREPLY}</h2> @@ -21,4 +22,5 @@ </fieldset> </div> </div> +<!-- EVENT quickreply_editor_panel_after --> </form> diff --git a/phpBB/styles/subsilver2/template/quickreply_editor.html b/phpBB/styles/subsilver2/template/quickreply_editor.html index b2b7b1624e..5afc723f48 100644 --- a/phpBB/styles/subsilver2/template/quickreply_editor.html +++ b/phpBB/styles/subsilver2/template/quickreply_editor.html @@ -1,5 +1,5 @@ <form method="post" action="{U_QR_ACTION}"> - +<!-- EVENT quickreply_editor_panel_before --> <table class="tablebg" width="100%" cellspacing="1"> <tr> <th align="center" colspan="2">{L_QUICKREPLY}</th> @@ -24,6 +24,6 @@ </td> </tr> </table> - +<!-- EVENT quickreply_editor_panel_after --> </form> <br clear="all" /> |