aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDaniel Mota <leinad4mind@gmail.com>2017-01-16 04:51:42 +0000
committerMarc Alexander <admin@m-a-styles.de>2017-05-21 13:04:47 +0200
commit1a1def5339de992368b735c8e47baedbaa464ab9 (patch)
treeb2a6b03d34d43be83a79d3df8f13ec846ca493cd /phpBB
parentfbc8a4a27564afe21cd30aa9c3eb6bf8a35a7e64 (diff)
downloadforums-1a1def5339de992368b735c8e47baedbaa464ab9.tar
forums-1a1def5339de992368b735c8e47baedbaa464ab9.tar.gz
forums-1a1def5339de992368b735c8e47baedbaa464ab9.tar.bz2
forums-1a1def5339de992368b735c8e47baedbaa464ab9.tar.xz
forums-1a1def5339de992368b735c8e47baedbaa464ab9.zip
[ticket/15020] Add Event for mcp_topic_postrow_post_subject
Add 2 events: mcp_topic_postrow_post_subject_before mcp_topic_postrow_post_subject_after PHPBB3-15020
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/docs/events.md14
-rw-r--r--phpBB/styles/prosilver/template/mcp_topic.html2
2 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md
index 7a3746e981..94090b19d1 100644
--- a/phpBB/docs/events.md
+++ b/phpBB/docs/events.md
@@ -967,6 +967,20 @@ mcp_topic_postrow_post_details_before
* Since: 3.1.10-RC1
* Purpose: Add content before post details in topic moderation
+mcp_topic_postrow_post_subject_after
+===
+* Locations:
+ + styles/prosilver/template/mcp_topic.html
+* Since: 3.1.11-RC1
+* Purpose: Add content after post subject in topic moderation
+
+mcp_topic_postrow_post_subject_before
+===
+* Locations:
+ + styles/prosilver/template/mcp_topic.html
+* Since: 3.1.11-RC1
+* Purpose: Add content before post subject in topic moderation
+
mcp_topic_topic_title_after
===
* Locations:
diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html
index 22d837b3d1..af4b63265f 100644
--- a/phpBB/styles/prosilver/template/mcp_topic.html
+++ b/phpBB/styles/prosilver/template/mcp_topic.html
@@ -111,7 +111,9 @@
</li>
</ul>
+ <!-- EVENT mcp_topic_postrow_post_subject_before -->
<h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3>
+ <!-- EVENT mcp_topic_postrow_post_subject_after -->
<!-- EVENT mcp_topic_postrow_post_details_before -->
<p class="author"><a href="#pr{postrow.POST_ID}">{postrow.MINI_POST_IMG}</a> {L_POSTED} {postrow.POST_DATE} {L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong><!-- IF postrow.U_MCP_DETAILS --> [ <a href="{postrow.U_MCP_DETAILS}">{L_POST_DETAILS}</a> ]<!-- ENDIF --></p>