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:
commit
5ab5b949d2
@ -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:
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user