mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Merge pull request #2061 from rxu/ticket/12231
[ticket/12231] Add template events to forumlist_body.html
This commit is contained in:
commit
9d25485b32
3 changed files with 40 additions and 0 deletions
|
@ -78,6 +78,22 @@ acp_users_signature_editor_buttons_before
|
||||||
* Since: 3.1.0-a3
|
* Since: 3.1.0-a3
|
||||||
* Purpose: Add content before BBCode posting buttons in the ACP user signature
|
* Purpose: Add content before BBCode posting buttons in the ACP user signature
|
||||||
|
|
||||||
|
forumlist_body_category_header_after
|
||||||
|
====
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/forumlist_body.html
|
||||||
|
+ styles/subsilver2/template/forumlist_body.html
|
||||||
|
* Since: 3.1.0-a4
|
||||||
|
* Purpose: Add content after the header of the category on the forum list.
|
||||||
|
|
||||||
|
forumlist_body_category_header_before
|
||||||
|
====
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/forumlist_body.html
|
||||||
|
+ styles/subsilver2/template/forumlist_body.html
|
||||||
|
* Since: 3.1.0-a4
|
||||||
|
* Purpose: Add content before the header of the category on the forum list.
|
||||||
|
|
||||||
forumlist_body_last_post_title_prepend
|
forumlist_body_last_post_title_prepend
|
||||||
====
|
====
|
||||||
* Locations:
|
* Locations:
|
||||||
|
@ -86,6 +102,22 @@ forumlist_body_last_post_title_prepend
|
||||||
* Since: 3.1.0-a1
|
* Since: 3.1.0-a1
|
||||||
* Purpose: Add content before the post title of the latest post in a forum on the forum list.
|
* Purpose: Add content before the post title of the latest post in a forum on the forum list.
|
||||||
|
|
||||||
|
forumlist_body_subforums_after
|
||||||
|
====
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/forumlist_body.html
|
||||||
|
+ styles/subsilver2/template/forumlist_body.html
|
||||||
|
* Since: 3.1.0-a4
|
||||||
|
* Purpose: Add content after the list of subforums (if any) for each forum on the forum list.
|
||||||
|
|
||||||
|
forumlist_body_subforums_before
|
||||||
|
====
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/forumlist_body.html
|
||||||
|
+ styles/subsilver2/template/forumlist_body.html
|
||||||
|
* Since: 3.1.0-a4
|
||||||
|
* Purpose: Add content before the list of subforums (if any) for each forum on the forum list.
|
||||||
|
|
||||||
index_body_linklist_after
|
index_body_linklist_after
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
|
<!-- EVENT forumlist_body_category_header_before -->
|
||||||
<!-- IF forumrow.S_IS_CAT or forumrow.S_FIRST_ROW or forumrow.S_NO_CAT -->
|
<!-- IF forumrow.S_IS_CAT or forumrow.S_FIRST_ROW or forumrow.S_NO_CAT -->
|
||||||
<div class="forabg">
|
<div class="forabg">
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
@ -22,6 +23,7 @@
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="topiclist forums">
|
<ul class="topiclist forums">
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
<!-- EVENT forumlist_body_category_header_after -->
|
||||||
|
|
||||||
<!-- IF not forumrow.S_IS_CAT -->
|
<!-- IF not forumrow.S_IS_CAT -->
|
||||||
<li class="row">
|
<li class="row">
|
||||||
|
@ -37,10 +39,12 @@
|
||||||
<br /><strong>{forumrow.L_MODERATOR_STR}{L_COLON}</strong> {forumrow.MODERATORS}
|
<br /><strong>{forumrow.L_MODERATOR_STR}{L_COLON}</strong> {forumrow.MODERATORS}
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
<!-- IF .forumrow.subforum and forumrow.S_LIST_SUBFORUMS -->
|
<!-- IF .forumrow.subforum and forumrow.S_LIST_SUBFORUMS -->
|
||||||
|
<!-- EVENT forumlist_body_subforums_before -->
|
||||||
<br /><strong>{forumrow.L_SUBFORUM_STR}</strong>
|
<br /><strong>{forumrow.L_SUBFORUM_STR}</strong>
|
||||||
<!-- BEGIN subforum -->
|
<!-- BEGIN subforum -->
|
||||||
<a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF -->
|
<a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF -->
|
||||||
<!-- END subforum -->
|
<!-- END subforum -->
|
||||||
|
<!-- EVENT forumlist_body_subforums_after -->
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<!-- IF not S_IS_BOT -->
|
<!-- IF not S_IS_BOT -->
|
||||||
|
|
|
@ -9,11 +9,13 @@
|
||||||
<th> {L_LAST_POST} </th>
|
<th> {L_LAST_POST} </th>
|
||||||
</tr>
|
</tr>
|
||||||
<!-- BEGIN forumrow -->
|
<!-- BEGIN forumrow -->
|
||||||
|
<!-- EVENT forumlist_body_category_header_before -->
|
||||||
<!-- IF forumrow.S_IS_CAT -->
|
<!-- IF forumrow.S_IS_CAT -->
|
||||||
<tr>
|
<tr>
|
||||||
<td class="cat" colspan="2"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
|
<td class="cat" colspan="2"><h4><a href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a></h4></td>
|
||||||
<td class="catdiv" colspan="3"> </td>
|
<td class="catdiv" colspan="3"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<!-- EVENT forumlist_body_category_header_after -->
|
||||||
<!-- ELSEIF forumrow.S_IS_LINK -->
|
<!-- ELSEIF forumrow.S_IS_LINK -->
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
|
<td class="row1" width="50" align="center">{forumrow.FORUM_FOLDER_IMG}</td>
|
||||||
|
@ -49,11 +51,13 @@
|
||||||
<p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}{L_COLON}</strong> {forumrow.MODERATORS}</p>
|
<p class="forumdesc"><strong>{forumrow.L_MODERATOR_STR}{L_COLON}</strong> {forumrow.MODERATORS}</p>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
<!-- IF .forumrow.subforum and forumrow.S_LIST_SUBFORUMS -->
|
<!-- IF .forumrow.subforum and forumrow.S_LIST_SUBFORUMS -->
|
||||||
|
<!-- EVENT forumlist_body_subforums_before -->
|
||||||
<p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong>
|
<p class="forumdesc"><strong>{forumrow.L_SUBFORUM_STR}</strong>
|
||||||
<!-- BEGIN subforum -->
|
<!-- BEGIN subforum -->
|
||||||
<a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF -->
|
<a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF -->
|
||||||
<!-- END subforum -->
|
<!-- END subforum -->
|
||||||
</p>
|
</p>
|
||||||
|
<!-- EVENT forumlist_body_subforums_after -->
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</td>
|
</td>
|
||||||
<td class="row2" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
|
<td class="row2" align="center"><p class="topicdetails">{forumrow.TOPICS}</p></td>
|
||||||
|
|
Loading…
Add table
Reference in a new issue