mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/12404] Adds two new events and changes some places
PHPBB3-12404
This commit is contained in:
parent
23bf9d0c42
commit
94c21684ff
3 changed files with 25 additions and 7 deletions
|
@ -275,13 +275,21 @@ overall_footer_page_body_after
|
||||||
* Since: 3.1.0-b3
|
* Since: 3.1.0-b3
|
||||||
* Purpose: Add content after the page-body, but before the footer
|
* Purpose: Add content after the page-body, but before the footer
|
||||||
|
|
||||||
overall_footer_timezone_prepend
|
overall_footer_teamlink_append
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
+ styles/prosilver/template/navbar_footer.html
|
+ styles/prosilver/template/navbar_footer.html
|
||||||
+ styles/subsilver2/template/breadcrumbs.html
|
+ styles/subsilver2/template/index_body.html
|
||||||
* Since: 3.1.0-b3
|
* Since: 3.1.0-b3
|
||||||
* Purpose: Add new List-Elements to the navbar in the page footer, before Timezone
|
* Purpose: Add contents after the team-link in the footer
|
||||||
|
|
||||||
|
overall_footer_teamlink_prepend
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/navbar_footer.html
|
||||||
|
+ styles/subsilver2/template/index_body.html
|
||||||
|
* Since: 3.1.0-b3
|
||||||
|
* Purpose: Add contents before the team-link in the footer
|
||||||
|
|
||||||
overall_footer_timezone_append
|
overall_footer_timezone_append
|
||||||
===
|
===
|
||||||
|
@ -289,7 +297,15 @@ overall_footer_timezone_append
|
||||||
+ styles/prosilver/template/navbar_footer.html
|
+ styles/prosilver/template/navbar_footer.html
|
||||||
+ styles/subsilver2/template/breadcrumbs.html
|
+ styles/subsilver2/template/breadcrumbs.html
|
||||||
* Since: 3.1.0-b3
|
* Since: 3.1.0-b3
|
||||||
* Purpose: Add new List-Elements to the navbar in the page footer, after "The Team"
|
* Purpose: Add content (must be inner <li>) to the navbar in the page footer, after "Timezone"
|
||||||
|
|
||||||
|
overall_footer_timezone_prepend
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/navbar_footer.html
|
||||||
|
+ styles/subsilver2/template/breadcrumbs.html
|
||||||
|
* Since: 3.1.0-b3
|
||||||
|
* Purpose: Add content(must be inner <li>) to the navbar in the page footer, before "Timezone"
|
||||||
|
|
||||||
overall_header_body_before
|
overall_header_body_before
|
||||||
===
|
===
|
||||||
|
|
|
@ -10,9 +10,11 @@
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
<!-- EVENT overall_footer_timezone_prepend -->
|
<!-- EVENT overall_footer_timezone_prepend -->
|
||||||
<li class="rightside">{S_TIMEZONE}</li>
|
<li class="rightside">{S_TIMEZONE}</li>
|
||||||
<!-- IF not S_IS_BOT --><li class="rightside"><a href="{U_DELETE_COOKIES}" data-ajax="true" data-refresh="true">{L_DELETE_COOKIES}</a></li><!-- ENDIF -->
|
|
||||||
<!-- IF U_TEAM --><li class="rightside"><a href="{U_TEAM}">{L_THE_TEAM}</a></li><!-- ENDIF -->
|
|
||||||
<!-- EVENT overall_footer_timezone_append -->
|
<!-- EVENT overall_footer_timezone_append -->
|
||||||
|
<!-- IF not S_IS_BOT --><li class="rightside"><a href="{U_DELETE_COOKIES}" data-ajax="true" data-refresh="true">{L_DELETE_COOKIES}</a></li><!-- ENDIF -->
|
||||||
|
<!-- EVENT overall_footer_teamlink_prepend -->
|
||||||
|
<!-- IF U_TEAM --><li class="rightside"><a href="{U_TEAM}">{L_THE_TEAM}</a></li><!-- ENDIF -->
|
||||||
|
<!-- EVENT overall_footer_teamlink_append -->
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<!-- INCLUDE forumlist_body.html -->
|
<!-- INCLUDE forumlist_body.html -->
|
||||||
|
|
||||||
<!-- IF not S_IS_BOT or U_TEAM -->
|
<!-- IF not S_IS_BOT or U_TEAM -->
|
||||||
<span class="gensmall"><!-- IF not S_IS_BOT --><a href="{U_DELETE_COOKIES}">{L_DELETE_COOKIES}</a><!-- ENDIF --><!-- IF not S_IS_BOT and U_TEAM --> | <!-- ENDIF --><!-- IF U_TEAM --><a href="{U_TEAM}">{L_THE_TEAM}</a><!-- ENDIF --></span><br />
|
<span class="gensmall"><!-- IF not S_IS_BOT --><a href="{U_DELETE_COOKIES}">{L_DELETE_COOKIES}</a><!-- ENDIF --><!-- IF not S_IS_BOT and U_TEAM --> | <!-- ENDIF --><!-- EVENT overall_footer_teamlink_prepend --><!-- IF U_TEAM --><a href="{U_TEAM}">{L_THE_TEAM}</a><!-- ENDIF --><!-- EVENT overall_footer_teamlink_append --></span><br />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<br clear="all" />
|
<br clear="all" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue