mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-03 06:08:05 +02:00
Merge pull request #3530 from VSEphpbb/ticket/13753
[ticket/13753] Add template events to forum category row headers
This commit is contained in:
commit
b3b7f8e925
@ -293,6 +293,20 @@ forumlist_body_category_header_before
|
|||||||
* Since: 3.1.0-a4
|
* Since: 3.1.0-a4
|
||||||
* Purpose: Add content before the header of the category on the forum list.
|
* 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
|
forumlist_body_forum_row_after
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
@ -13,12 +13,14 @@
|
|||||||
<div class="inner">
|
<div class="inner">
|
||||||
<ul class="topiclist">
|
<ul class="topiclist">
|
||||||
<li class="header">
|
<li class="header">
|
||||||
|
<!-- EVENT forumlist_body_category_header_row_prepend -->
|
||||||
<dl class="icon">
|
<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>
|
<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="topics">{L_TOPICS}</dd>
|
||||||
<dd class="posts">{L_POSTS}</dd>
|
<dd class="posts">{L_POSTS}</dd>
|
||||||
<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
|
<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
<!-- EVENT forumlist_body_category_header_row_append -->
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="topiclist forums">
|
<ul class="topiclist forums">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user