mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-26 13:18:54 +00:00
Merge remote-tracking branch 'remotes/Crizz0/ticket/12404' into develop-ascraeus
# By Crizzo # Via Crizzo * remotes/Crizz0/ticket/12404: [ticket/12404] Splits up the line 18 in subsilver2 into more lines [ticket/12404] Changes append/prepend to after/before [ticket/12404] Adds two new events and changes some places [ticket/12404] Adds a new event before and after the Timezone display
This commit is contained in:
commit
73b950d2f1
4 changed files with 47 additions and 2 deletions
|
@ -275,6 +275,38 @@ 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_teamlink_after
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/navbar_footer.html
|
||||||
|
+ styles/subsilver2/template/index_body.html
|
||||||
|
* Since: 3.1.0-b3
|
||||||
|
* Purpose: Add contents after the team-link in the footer
|
||||||
|
|
||||||
|
overall_footer_teamlink_before
|
||||||
|
===
|
||||||
|
* 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_after
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/navbar_footer.html
|
||||||
|
+ styles/subsilver2/template/breadcrumbs.html
|
||||||
|
* Since: 3.1.0-b3
|
||||||
|
* Purpose: Add content to the navbar in the page footer, after "Timezone"
|
||||||
|
|
||||||
|
overall_footer_timezone_before
|
||||||
|
===
|
||||||
|
* Locations:
|
||||||
|
+ styles/prosilver/template/navbar_footer.html
|
||||||
|
+ styles/subsilver2/template/breadcrumbs.html
|
||||||
|
* Since: 3.1.0-b3
|
||||||
|
* Purpose: Add content to the navbar in the page footer, before "Timezone"
|
||||||
|
|
||||||
overall_header_body_before
|
overall_header_body_before
|
||||||
===
|
===
|
||||||
* Locations:
|
* Locations:
|
||||||
|
|
|
@ -10,9 +10,13 @@
|
||||||
<!-- IF not S_IS_BOT -->
|
<!-- IF not S_IS_BOT -->
|
||||||
<!-- IF U_WATCH_FORUM_LINK --><li class="small-icon icon-<!-- IF S_WATCHING_FORUM -->unsubscribe<!-- ELSE -->subscribe<!-- ENDIF -->"><a href="{U_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}" data-ajax="toggle_link" data-toggle-class="small-icon icon-<!-- IF not S_WATCHING_FORUM -->unsubscribe<!-- ELSE -->subscribe<!-- ENDIF -->" data-toggle-text="{S_WATCH_FORUM_TOGGLE}" data-toggle-url="{U_WATCH_FORUM_TOGGLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
|
<!-- IF U_WATCH_FORUM_LINK --><li class="small-icon icon-<!-- IF S_WATCHING_FORUM -->unsubscribe<!-- ELSE -->subscribe<!-- ENDIF -->"><a href="{U_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}" data-ajax="toggle_link" data-toggle-class="small-icon icon-<!-- IF not S_WATCHING_FORUM -->unsubscribe<!-- ELSE -->subscribe<!-- ENDIF -->" data-toggle-text="{S_WATCH_FORUM_TOGGLE}" data-toggle-url="{U_WATCH_FORUM_TOGGLE}">{S_WATCH_FORUM_TITLE}</a></li><!-- ENDIF -->
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
<!-- EVENT overall_footer_timezone_before -->
|
||||||
<li class="rightside">{S_TIMEZONE}</li>
|
<li class="rightside">{S_TIMEZONE}</li>
|
||||||
|
<!-- EVENT overall_footer_timezone_after -->
|
||||||
<!-- 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 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><!-- ENDIF -->
|
<!-- EVENT overall_footer_teamlink_before -->
|
||||||
|
<!-- IF U_TEAM --><li class="rightside"><a href="{U_TEAM}">{L_THE_TEAM}</a></li><!-- ENDIF -->
|
||||||
|
<!-- EVENT overall_footer_teamlink_after -->
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
<td class="row1">
|
<td class="row1">
|
||||||
<p class="breadcrumbs"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}"{$MICRODATA}>{L_SITE_HOME}</a> <strong>»</strong> <!-- ENDIF --><a href="{U_INDEX}"{$MICRODATA}>{L_INDEX}</a><!-- BEGIN navlinks --> » <a href="{navlinks.U_VIEW_FORUM}"{$MICRODATA}>{navlinks.FORUM_NAME}</a><!-- END navlinks -->
|
<p class="breadcrumbs"><!-- IF U_SITE_HOME --><a href="{U_SITE_HOME}"{$MICRODATA}>{L_SITE_HOME}</a> <strong>»</strong> <!-- ENDIF --><a href="{U_INDEX}"{$MICRODATA}>{L_INDEX}</a><!-- BEGIN navlinks --> » <a href="{navlinks.U_VIEW_FORUM}"{$MICRODATA}>{navlinks.FORUM_NAME}</a><!-- END navlinks -->
|
||||||
<!-- EVENT overall_header_breadcrumb_append --></p>
|
<!-- EVENT overall_header_breadcrumb_append --></p>
|
||||||
|
<!-- EVENT overall_footer_timezone_before -->
|
||||||
<p class="datetime">{S_TIMEZONE}</p>
|
<p class="datetime">{S_TIMEZONE}</p>
|
||||||
|
<!-- EVENT overall_footer_timezone_after -->
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -15,7 +15,14 @@
|
||||||
<!-- 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_before -->
|
||||||
|
<!-- IF U_TEAM --><a href="{U_TEAM}">{L_THE_TEAM}</a><!-- ENDIF -->
|
||||||
|
<!-- EVENT overall_footer_teamlink_after -->
|
||||||
|
</span>
|
||||||
|
<br />
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<br clear="all" />
|
<br clear="all" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue