1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-09 02:12:44 +02:00

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander 2020-03-16 17:24:33 +01:00
commit 5ab5b949d2
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995
2 changed files with 36 additions and 0 deletions

View File

@ -1894,6 +1894,34 @@ posting_editor_submit_buttons
* Since: 3.1.6-RC1
* Purpose: Add custom buttons in the posting editor
posting_editor_topic_icons_after
===
* Locations:
+ styles/prosilver/template/posting_editor.html
* Since: 3.2.10-RC1
* Purpose: Add custom data after the topic icons loop
posting_editor_topic_icons_append
===
* Locations:
+ styles/prosilver/template/posting_editor.html
* Since: 3.2.10-RC1
* Purpose: Append custom data to the topic icon
posting_editor_topic_icons_before
===
* Locations:
+ styles/prosilver/template/posting_editor.html
* Since: 3.2.10-RC1
* Purpose: Add custom data before the topic icons loop
posting_editor_topic_icons_prepend
===
* Locations:
+ styles/prosilver/template/posting_editor.html
* Since: 3.2.10-RC1
* Purpose: Prepend custom data to the topic icon
posting_layout_include_panel_body
===
* Locations:

View File

@ -1,16 +1,24 @@
<fieldset class="fields1">
<!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->
{% EVENT posting_editor_topic_icons_before %}
<!-- IF S_SHOW_TOPIC_ICONS or S_SHOW_PM_ICONS -->
<dl>
<dt><label for="icon">{L_ICON}{L_COLON}</label></dt>
<dd>
{% EVENT posting_editor_topic_icons_prepend %}
<label for="icon"><input type="radio" name="icon" id="icon" value="0" checked="checked" tabindex="1" /> <!-- IF S_SHOW_TOPIC_ICONS -->{L_NO_TOPIC_ICON}<!-- ELSE -->{L_NO_PM_ICON}<!-- ENDIF --></label>
<!-- BEGIN topic_icon --><label for="icon-{topic_icon.ICON_ID}"><input type="radio" name="icon" id="icon-{topic_icon.ICON_ID}" value="{topic_icon.ICON_ID}" {topic_icon.S_ICON_CHECKED} tabindex="1" /><img src="{topic_icon.ICON_IMG}" width="{topic_icon.ICON_WIDTH}" height="{topic_icon.ICON_HEIGHT}" alt="{topic_icon.ICON_ALT}" title="{topic_icon.ICON_ALT}" /></label> <!-- END topic_icon -->
{% EVENT posting_editor_topic_icons_append %}
</dd>
</dl>
<!-- ENDIF -->
{% EVENT posting_editor_topic_icons_after %}
<!-- IF not S_PRIVMSGS and S_DISPLAY_USERNAME -->
<dl style="clear: left;">
<dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>