mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 07:58:56 +02:00
Merge branch '3.2.x' into 3.3.x
This commit is contained in:
commit
f830f0f6df
@ -1894,6 +1894,34 @@ posting_editor_submit_buttons
|
|||||||
* Since: 3.1.6-RC1
|
* Since: 3.1.6-RC1
|
||||||
* Purpose: Add custom buttons in the posting editor
|
* 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
|
posting_layout_include_panel_body
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
@ -1,16 +1,24 @@
|
|||||||
<fieldset class="fields1">
|
<fieldset class="fields1">
|
||||||
<!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->
|
<!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->
|
||||||
|
|
||||||
|
{% EVENT posting_editor_topic_icons_before %}
|
||||||
|
|
||||||
<!-- IF S_SHOW_TOPIC_ICONS or S_SHOW_PM_ICONS -->
|
<!-- IF S_SHOW_TOPIC_ICONS or S_SHOW_PM_ICONS -->
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label for="icon">{L_ICON}{L_COLON}</label></dt>
|
<dt><label for="icon">{L_ICON}{L_COLON}</label></dt>
|
||||||
<dd>
|
<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>
|
<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 -->
|
<!-- 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>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
{% EVENT posting_editor_topic_icons_after %}
|
||||||
|
|
||||||
<!-- IF not S_PRIVMSGS and S_DISPLAY_USERNAME -->
|
<!-- IF not S_PRIVMSGS and S_DISPLAY_USERNAME -->
|
||||||
<dl style="clear: left;">
|
<dl style="clear: left;">
|
||||||
<dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
|
<dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user