diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 0a071bff7d..314ec0961f 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -986,6 +986,34 @@ mcp_forum_actions_before * Since: 3.1.11-RC1 * Purpose: Add some information before actions fieldset +mcp_forum_last_post_author_username_append +=== +* Locations: + + styles/prosilver/template/mcp_forum.html (2) +* Since: 3.3.4-RC1 +* Purpose: Append information to last post author username of member + +mcp_forum_last_post_author_username_prepend +=== +* Locations: + + styles/prosilver/template/mcp_forum.html (2) +* Since: 3.3.4-RC1 +* Purpose: Prepend information to last post author username of member + +mcp_forum_topic_author_username_append +=== +* Locations: + + styles/prosilver/template/mcp_forum.html +* Since: 3.3.4-RC1 +* Purpose: Append information to topic author username of member + +mcp_forum_topic_author_username_prepend +=== +* Locations: + + styles/prosilver/template/mcp_forum.html +* Since: 3.3.4-RC1 +* Purpose: Prepend information to topic author username of member + mcp_forum_topic_title_after === * Locations: @@ -2279,6 +2307,13 @@ search_results_post_before * Since: 3.1.0-b3 * Purpose: Add data before search result posts +search_results_post_subject_before +=== +* Locations: + + styles/prosilver/template/search_results.html +* Since: 3.3.4-RC1 +* Purpose: Add data before search result posts subject + search_results_postprofile_after === * Locations: @@ -2328,6 +2363,20 @@ search_results_topic_before * Since: 3.1.0-b4 * Purpose: Add data before search result topics +search_results_topic_header_lastpost_after +=== +* Locations: + + styles/prosilver/template/search_results.html +* Since: 3.3.4-RC1 +* Purpose: Add header column(s) after `lastpost` column in search result topics + +search_results_topic_row_lastpost_after +=== +* Locations: + + styles/prosilver/template/search_results.html +* Since: 3.3.4-RC1 +* Purpose: Add data column(s) after `lastpost` column in search result topics + search_results_topic_title_after === * Locations: diff --git a/phpBB/styles/prosilver/template/mcp_forum.html b/phpBB/styles/prosilver/template/mcp_forum.html index 19b5de255b..9665834598 100644 --- a/phpBB/styles/prosilver/template/mcp_forum.html +++ b/phpBB/styles/prosilver/template/mcp_forum.html @@ -81,7 +81,7 @@ @@ -103,14 +103,14 @@
{% if topicrow.ATTACH_ICON_IMG %}{{ Icon('iconify', 'fa:paperclip', '', true) }} {% endif %} {% EVENT topiclist_row_topic_by_author_before %} - {L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME} + {L_POST_BY_AUTHOR} {% EVENT mcp_forum_topic_author_username_prepend %}{topicrow.TOPIC_AUTHOR_FULL}{% EVENT mcp_forum_topic_author_username_append %} » {topicrow.FIRST_POST_TIME} {% EVENT topiclist_row_topic_by_author_after %}
{topicrow.REPLIES} {L_REPLIES}
-
{L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
{topicrow.LAST_POST_TIME}
+
{L_LAST_POST} {L_POST_BY_AUTHOR} {% EVENT mcp_forum_last_post_author_username_prepend %}{topicrow.LAST_POST_AUTHOR_FULL}{% EVENT mcp_forum_last_post_author_username_append %}
{topicrow.LAST_POST_TIME}
checked="checked" />  diff --git a/phpBB/styles/prosilver/template/search_results.html b/phpBB/styles/prosilver/template/search_results.html index 8ec4e0cb01..96d8882258 100644 --- a/phpBB/styles/prosilver/template/search_results.html +++ b/phpBB/styles/prosilver/template/search_results.html @@ -69,6 +69,7 @@
{L_REPLIES}
{L_VIEWS}
{L_LAST_POST}
+ {% EVENT search_results_topic_header_lastpost_after %} @@ -169,6 +170,7 @@
+ {% EVENT search_results_topic_row_lastpost_after %} @@ -210,6 +212,7 @@
+ {% EVENT search_results_post_subject_before %}

{searchresults.POST_SUBJECT}

{searchresults.MESSAGE}