mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #3224 from prototech/ticket/13427
[ticket/13427] Add several before/after template events to mcp_front.html
This commit is contained in:
commit
ffbe1d424b
3 changed files with 60 additions and 0 deletions
|
@ -456,6 +456,46 @@ mcp_ban_unban_before
|
||||||
* Since: 3.1.0-RC3
|
* Since: 3.1.0-RC3
|
||||||
* Purpose: Add additional fields to the unban form in MCP
|
* Purpose: Add additional fields to the unban form in MCP
|
||||||
|
|
||||||
|
mcp_front_latest_logs_after
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/mcp_front.html
|
||||||
|
+ styles/subsilver2/template/mcp_front.html
|
||||||
|
* Since: 3.1.3-RC1
|
||||||
|
* Purpose: Add content after latest logs list
|
||||||
|
|
||||||
|
mcp_front_latest_logs_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/mcp_front.html
|
||||||
|
+ styles/subsilver2/template/mcp_front.html
|
||||||
|
* Since: 3.1.3-RC1
|
||||||
|
* Purpose: Add content before latest logs list
|
||||||
|
|
||||||
|
mcp_front_latest_reported_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/mcp_front.html
|
||||||
|
+ styles/subsilver2/template/mcp_front.html
|
||||||
|
* Since: 3.1.3-RC1
|
||||||
|
* Purpose: Add content before latest reported posts list
|
||||||
|
|
||||||
|
mcp_front_latest_reported_pms_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/mcp_front.html
|
||||||
|
+ styles/subsilver2/template/mcp_front.html
|
||||||
|
* Since: 3.1.3-RC1
|
||||||
|
* Purpose: Add content before latest reported private messages list
|
||||||
|
|
||||||
|
mcp_front_latest_unapproved_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/mcp_front.html
|
||||||
|
+ styles/subsilver2/template/mcp_front.html
|
||||||
|
* Since: 3.1.3-RC1
|
||||||
|
* Purpose: Add content before latest unapproved posts list
|
||||||
|
|
||||||
memberlist_body_username_append
|
memberlist_body_username_append
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
<h2>{PAGE_TITLE}</h2>
|
<h2>{PAGE_TITLE}</h2>
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_unapproved_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_UNAPPROVED -->
|
<!-- IF S_SHOW_UNAPPROVED -->
|
||||||
|
|
||||||
<form id="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">
|
<form id="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">
|
||||||
|
@ -59,6 +61,8 @@
|
||||||
</form>
|
</form>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_reported_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_REPORTS -->
|
<!-- IF S_SHOW_REPORTS -->
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
@ -100,6 +104,8 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_reported_pms_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_PM_REPORTS -->
|
<!-- IF S_SHOW_PM_REPORTS -->
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
@ -141,6 +147,8 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_logs_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_LOGS -->
|
<!-- IF S_SHOW_LOGS -->
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
@ -180,4 +188,6 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_logs_after -->
|
||||||
|
|
||||||
<!-- INCLUDE mcp_footer.html -->
|
<!-- INCLUDE mcp_footer.html -->
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- INCLUDE mcp_header.html -->
|
<!-- INCLUDE mcp_header.html -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_unapproved_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_UNAPPROVED -->
|
<!-- IF S_SHOW_UNAPPROVED -->
|
||||||
<form name="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">
|
<form name="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">
|
||||||
|
|
||||||
|
@ -44,6 +46,8 @@
|
||||||
<br clear="all" /><br />
|
<br clear="all" /><br />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_reported_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_REPORTS -->
|
<!-- IF S_SHOW_REPORTS -->
|
||||||
<table class="tablebg" width="100%" cellspacing="1">
|
<table class="tablebg" width="100%" cellspacing="1">
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -73,6 +77,8 @@
|
||||||
<br clear="all" /><br />
|
<br clear="all" /><br />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_reported_pms_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_PM_REPORTS -->
|
<!-- IF S_SHOW_PM_REPORTS -->
|
||||||
<table class="tablebg" width="100%" cellspacing="1">
|
<table class="tablebg" width="100%" cellspacing="1">
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -104,6 +110,8 @@
|
||||||
<br clear="all" /><br />
|
<br clear="all" /><br />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_logs_before -->
|
||||||
|
|
||||||
<!-- IF S_SHOW_LOGS -->
|
<!-- IF S_SHOW_LOGS -->
|
||||||
<table class="tablebg" width="100%" cellspacing="1" cellpadding="4" border="0" align="{S_CONTENT_FLOW_END}">
|
<table class="tablebg" width="100%" cellspacing="1" cellpadding="4" border="0" align="{S_CONTENT_FLOW_END}">
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -134,4 +142,6 @@
|
||||||
<br clear="all" />
|
<br clear="all" />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT mcp_front_latest_logs_after -->
|
||||||
|
|
||||||
<!-- INCLUDE mcp_footer.html -->
|
<!-- INCLUDE mcp_footer.html -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue