aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2014-01-17 19:07:56 -0800
committerNathan Guse <nathaniel.guse@gmail.com>2014-01-17 19:07:56 -0800
commit059880debfff8f50b2f5715a26840e450d80d1aa (patch)
tree5aecb3dcba1f19ee41c90b90c87049a163f290d3
parentce8b8593e0e742be8ce89a8c90dfad5431ceb059 (diff)
parenta59bbeed2dd82b316f1e2f9ad484b978ef2a541c (diff)
downloadforums-059880debfff8f50b2f5715a26840e450d80d1aa.tar
forums-059880debfff8f50b2f5715a26840e450d80d1aa.tar.gz
forums-059880debfff8f50b2f5715a26840e450d80d1aa.tar.bz2
forums-059880debfff8f50b2f5715a26840e450d80d1aa.tar.xz
forums-059880debfff8f50b2f5715a26840e450d80d1aa.zip
Merge pull request #1809 from VSEphpbb/ticket/11966
[ticket/11966] Add header navigation template events to Subsilver2
-rw-r--r--phpBB/docs/events.md2
-rw-r--r--phpBB/styles/subsilver2/template/overall_header.html2
2 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md
index f1df662f76..2d5f6cc990 100644
--- a/phpBB/docs/events.md
+++ b/phpBB/docs/events.md
@@ -211,6 +211,7 @@ overall_header_navigation_append
===
* Locations:
+ styles/prosilver/template/overall_header.html
+ + styles/subsilver2/template/overall_header.html
* Since: 3.1.0-a1
* Purpose: Add links after the navigation links in the header
@@ -218,6 +219,7 @@ overall_header_navigation_prepend
===
* Locations:
+ styles/prosilver/template/overall_header.html
+ + styles/subsilver2/template/overall_header.html
* Since: 3.1.0-a1
* Purpose: Add links before the navigation links in the header
diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html
index 16e0f6abaf..9ca989ea8b 100644
--- a/phpBB/styles/subsilver2/template/overall_header.html
+++ b/phpBB/styles/subsilver2/template/overall_header.html
@@ -198,12 +198,14 @@ function marklist(id, name, state)
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> &nbsp;<span class="error">{L_BOARD_DISABLED}</span><!-- ENDIF -->
</td>
<td class="genmed" align="{S_CONTENT_FLOW_END}">
+ <!-- EVENT overall_header_navigation_prepend -->
<a href="{U_FAQ}"><img src="{T_THEME_PATH}/images/icon_mini_faq.gif" width="12" height="13" alt="*" /> {L_FAQ}</a>
<!-- IF S_DISPLAY_SEARCH -->&nbsp; &nbsp;<a href="{U_SEARCH}"><img src="{T_THEME_PATH}/images/icon_mini_search.gif" width="12" height="13" alt="*" /> {L_SEARCH}</a><!-- ENDIF -->
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST -->&nbsp; &nbsp;<a href="{U_MEMBERLIST}"><img src="{T_THEME_PATH}/images/icon_mini_members.gif" width="12" height="13" alt="*" /> {L_MEMBERLIST}</a><!-- ENDIF -->
<!-- IF S_USER_LOGGED_IN -->&nbsp; &nbsp;<a href="{U_PROFILE}"><img src="{T_THEME_PATH}/images/icon_mini_profile.gif" width="12" height="13" alt="*" /> {L_PROFILE}</a><!-- ENDIF -->
<!-- ENDIF -->
+ <!-- EVENT overall_header_navigation_append -->
</td>
</tr>
</table>