mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/14356] Add template events to viewtopic around back2top link
PHPBB3-14356
This commit is contained in:
parent
901785bc5e
commit
33db45edac
3 changed files with 38 additions and 2 deletions
|
@ -2441,6 +2441,38 @@ viewtopic_body_post_subject_before
|
||||||
* Since: 3.1.7-RC1
|
* Since: 3.1.7-RC1
|
||||||
* Purpose: Add data before post icon and subject
|
* Purpose: Add data before post icon and subject
|
||||||
|
|
||||||
|
viewtopic_body_postrow_back2top_after
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/viewtopic_body.html
|
||||||
|
+ styles/subsilver2/template/viewtopic_body.html
|
||||||
|
* Since: 3.1.8-RC1
|
||||||
|
* Purpose: Add content to the post's bottom after the back to top link
|
||||||
|
|
||||||
|
viewtopic_body_postrow_back2top_append
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/viewtopic_body.html
|
||||||
|
+ styles/subsilver2/template/viewtopic_body.html
|
||||||
|
* Since: 3.1.8-RC1
|
||||||
|
* Purpose: Add content to the post's bottom directly before the back to top link
|
||||||
|
|
||||||
|
viewtopic_body_postrow_back2top_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/viewtopic_body.html
|
||||||
|
+ styles/subsilver2/template/viewtopic_body.html
|
||||||
|
* Since: 3.1.8-RC1
|
||||||
|
* Purpose: Add content to the post's bottom before the back to top link
|
||||||
|
|
||||||
|
viewtopic_body_postrow_back2top_prepend
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/viewtopic_body.html
|
||||||
|
+ styles/subsilver2/template/viewtopic_body.html
|
||||||
|
* Since: 3.1.8-RC1
|
||||||
|
* Purpose: Add content to the post's bottom directly before the back to top link
|
||||||
|
|
||||||
viewtopic_body_postrow_custom_fields_after
|
viewtopic_body_postrow_custom_fields_after
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
|
|
@ -331,7 +331,9 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="back2top"><a href="#top" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
|
<!-- EVENT viewtopic_body_postrow_back2top_before -->
|
||||||
|
<div class="back2top"><!-- EVENT viewtopic_body_postrow_back2top_prepend --><a href="#top" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a><!-- EVENT viewtopic_body_postrow_back2top_append --></div>
|
||||||
|
<!-- EVENT viewtopic_body_postrow_back2top_after -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -346,7 +346,9 @@
|
||||||
|
|
||||||
<!-- IF postrow.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
<!-- IF postrow.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
||||||
|
|
||||||
<td class="profile"><strong><a href="#wrapheader">{L_BACK_TO_TOP}</a></strong></td>
|
<!-- EVENT viewtopic_body_postrow_back2top_before -->
|
||||||
|
<td class="profile"><!-- EVENT viewtopic_body_postrow_back2top_prepend --><strong><a href="#wrapheader">{L_BACK_TO_TOP}</a></strong><!-- EVENT viewtopic_body_postrow_back2top_append --></td>
|
||||||
|
<!-- EVENT viewtopic_body_postrow_back2top_after -->
|
||||||
<td>
|
<td>
|
||||||
<div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};">
|
<div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};">
|
||||||
<!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="imageset">{PROFILE_IMG}</a><!-- ENDIF -->
|
<!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="imageset">{PROFILE_IMG}</a><!-- ENDIF -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue