mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 20:44:01 +01:00
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12860] Fix typo [ticket/12860] Add template events mcp_ban_unban [ticket/12860] Add template events mcp_ban_fields
This commit is contained in:
commit
5dd8a759be
@ -278,6 +278,38 @@ index_body_stat_blocks_before
|
||||
* Since: 3.1.0-a1
|
||||
* Purpose: Add new statistic blocks above the Who Is Online and Board Statistics blocks
|
||||
|
||||
mcp_ban_fields_after
|
||||
===
|
||||
* Locations:
|
||||
+ styles/prosilver/template/mcp_ban.html
|
||||
+ styles/subsilver2/template/mcp_ban.html
|
||||
* Since: 3.1.0-RC3
|
||||
* Purpose: Add additional fields to the ban form in MCP
|
||||
|
||||
mcp_ban_fields_before
|
||||
===
|
||||
* Locations:
|
||||
+ styles/prosilver/template/mcp_ban.html
|
||||
+ styles/subsilver2/template/mcp_ban.html
|
||||
* Since: 3.1.0-RC3
|
||||
* Purpose: Add additional fields to the ban form in MCP
|
||||
|
||||
mcp_ban_unban_after
|
||||
===
|
||||
* Locations:
|
||||
+ styles/prosilver/template/mcp_ban.html
|
||||
+ styles/subsilver2/template/mcp_ban.html
|
||||
* Since: 3.1.0-RC3
|
||||
* Purpose: Add additional fields to the unban form in MCP
|
||||
|
||||
mcp_ban_unban_before
|
||||
===
|
||||
* Locations:
|
||||
+ styles/prosilver/template/mcp_ban.html
|
||||
+ styles/subsilver2/template/mcp_ban.html
|
||||
* Since: 3.1.0-RC3
|
||||
* Purpose: Add additional fields to the unban form in MCP
|
||||
|
||||
memberlist_body_username_append
|
||||
===
|
||||
* Locations:
|
||||
|
@ -42,6 +42,7 @@
|
||||
<p>{L_EXPLAIN}</p>
|
||||
|
||||
<fieldset>
|
||||
<!-- EVENT mcp_ban_fields_before -->
|
||||
<dl>
|
||||
<dt><label for="ban">{L_BAN_CELL}{L_COLON}</label></dt>
|
||||
<dd><label for="ban"><textarea name="ban" id="ban" class="inputbox" cols="40" rows="3">{BAN_QUANTIFIER}</textarea></label></dd>
|
||||
@ -70,6 +71,7 @@
|
||||
<label for="banexclude0"><input type="radio" name="banexclude" id="banexclude0" value="0" checked="checked" /> {L_NO}</label>
|
||||
</dd>
|
||||
</dl>
|
||||
<!-- EVENT mcp_ban_fields_after -->
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
@ -89,6 +91,7 @@
|
||||
|
||||
<!-- IF S_BANNED_OPTIONS -->
|
||||
<fieldset>
|
||||
<!-- EVENT mcp_ban_unban_before -->
|
||||
<dl>
|
||||
<dt><label for="unban">{L_BAN_CELL}{L_COLON}</label></dt>
|
||||
<dd><select name="unban[]" id="unban" multiple="multiple" size="5" onchange="if (this.selectedIndex != -1) {display_details(this.options[this.selectedIndex].value);}">{BANNED_OPTIONS}</select></dd>
|
||||
@ -105,6 +108,7 @@
|
||||
<dt>{L_BAN_GIVE_REASON}{L_COLON}</dt>
|
||||
<dd><strong id="unbangivereason"></strong></dd>
|
||||
</dl>
|
||||
<!-- EVENT mcp_ban_unban_after -->
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
|
@ -40,6 +40,7 @@
|
||||
<tr>
|
||||
<td class="row3" colspan="2">{L_EXPLAIN}</td>
|
||||
</tr>
|
||||
<!-- EVENT mcp_ban_fields_before -->
|
||||
<tr>
|
||||
<td class="row1" width="45%" valign="top"><b>{L_BAN_CELL}{L_COLON}</b></td>
|
||||
<td class="row2">
|
||||
@ -63,6 +64,7 @@
|
||||
<td class="row1" valign="top"><b>{L_BAN_GIVE_REASON}{L_COLON}</b></td>
|
||||
<td class="row2"><input name="bangivereason" type="text" class="post" maxlength="255" /></td>
|
||||
</tr>
|
||||
<!-- EVENT mcp_ban_fields_after -->
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center"><input type="submit" name="bansubmit" value="{L_SUBMIT}" class="btnmain" /> <input type="reset" value="{L_RESET}" class="btnlite" /> </td>
|
||||
</tr>
|
||||
@ -78,6 +80,7 @@
|
||||
<td class="row3" colspan="2">{L_UNBAN_EXPLAIN}</td>
|
||||
</tr>
|
||||
<!-- IF S_BANNED_OPTIONS -->
|
||||
<!-- EVENT mcp_ban_unban_before -->
|
||||
<tr>
|
||||
<td class="row1" valign="top" width="45%"><b>{L_BAN_CELL}{L_COLON}</b></td>
|
||||
<td class="row2"><select name="unban[]" multiple="multiple" size="10" style="width: 50%" onchange="if (this.selectedIndex > -1) display_details(this.options[this.selectedIndex].value); else display_details(-1);">{BANNED_OPTIONS}</select></td>
|
||||
@ -94,6 +97,7 @@
|
||||
<td class="row1" valign="top"><b>{L_BAN_GIVE_REASON}{L_COLON}</b></td>
|
||||
<td class="row2"><textarea style="border: 0; width: 100%" name="unbangivereason" readonly="readonly" rows="5" cols="80"> </textarea></td>
|
||||
</tr>
|
||||
<!-- EVENT mcp_ban_unban_after -->
|
||||
<tr>
|
||||
<td class="cat" colspan="2" align="center"><input type="submit" name="unbansubmit" value="{L_SUBMIT}" class="btnmain" /> <input type="reset" value="{L_RESET}" class="btnlite" /> </td>
|
||||
</tr>
|
||||
|
Loading…
x
Reference in New Issue
Block a user