diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-05-08 11:19:53 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-05-08 11:19:53 +0200 |
commit | b3b7f8e925a2af91d578ad4453070cefc02e7a3d (patch) | |
tree | 683a8218b55f1af4fa2908bdddeb0dc10a78fb6c | |
parent | 7f5f5c216bc54eab3259bd0b7560a0b324d01841 (diff) | |
parent | ef0838e9314306b4627237e49a2a01c8ec85b3e6 (diff) | |
download | forums-b3b7f8e925a2af91d578ad4453070cefc02e7a3d.tar forums-b3b7f8e925a2af91d578ad4453070cefc02e7a3d.tar.gz forums-b3b7f8e925a2af91d578ad4453070cefc02e7a3d.tar.bz2 forums-b3b7f8e925a2af91d578ad4453070cefc02e7a3d.tar.xz forums-b3b7f8e925a2af91d578ad4453070cefc02e7a3d.zip |
Merge pull request #3530 from VSEphpbb/ticket/13753
[ticket/13753] Add template events to forum category row headers
-rw-r--r-- | phpBB/docs/events.md | 14 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/forumlist_body.html | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 3413f7f684..c4bfaebb1b 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -293,6 +293,20 @@ forumlist_body_category_header_before * Since: 3.1.0-a4 * Purpose: Add content before the header of the category on the forum list. +forumlist_body_category_header_row_append +=== +* Locations: + + styles/prosilver/template/forumlist_body.html +* Since: 3.1.5-RC1 +* Purpose: Add content after the header row of the category on the forum list. + +forumlist_body_category_header_row_prepend +=== +* Locations: + + styles/prosilver/template/forumlist_body.html +* Since: 3.1.5-RC1 +* Purpose: Add content before the header row of the category on the forum list. + forumlist_body_forum_row_after === * Locations: diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index f2e03630ff..f8d6e36c8c 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -13,12 +13,14 @@ <div class="inner"> <ul class="topiclist"> <li class="header"> + <!-- EVENT forumlist_body_category_header_row_prepend --> <dl class="icon"> <dt><div class="list-inner"><!-- IF forumrow.S_IS_CAT --><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a><!-- ELSE -->{L_FORUM}<!-- ENDIF --></div></dt> <dd class="topics">{L_TOPICS}</dd> <dd class="posts">{L_POSTS}</dd> <dd class="lastpost"><span>{L_LAST_POST}</span></dd> </dl> + <!-- EVENT forumlist_body_category_header_row_append --> </li> </ul> <ul class="topiclist forums"> |