From 3113963cb6a3e75a0d9d52fe1af7aa44c13e9b13 Mon Sep 17 00:00:00 2001 From: David King Date: Sun, 11 May 2014 22:10:11 -0400 Subject: [ticket/12532] Add navbar_header_username_append/prepend PHPBB3-12532 --- phpBB/docs/events.md | 21 +++++++++++++++++---- phpBB/styles/prosilver/template/navbar_header.html | 2 +- 2 files changed, 18 insertions(+), 5 deletions(-) (limited to 'phpBB') diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 44a7824901..bd148ffff2 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -344,6 +344,19 @@ memberlist_view_user_statistics_before * Since: 3.1.0-a1 * Purpose: Add entries before the user statistics part of any user profile +navbar_header_username_append +=== +* Locations: + + styles/prosilver/template/navbar_header.html +* Since: 3.1.0-b4 +* Purpose: Add text and HTMl after the username shown in the navbar. + +navbar_header_username_prepend +=== +* Locations: + + styles/prosilver/template/navbar_header.html +* Since: 3.1.0-b4 + overall_footer_after === * Locations: @@ -767,7 +780,7 @@ ucp_prefs_view_radio_buttons_prepend + styles/prosilver/template/ucp_prefs_view.html + styles/subsilver2/template/ucp_prefs_view.html * Since: 3.1.0-a1 -* Purpose: Add options to the top of the radio buttons block of the Edit +* Purpose: Add options to the top of the radio buttons block of the Edit Display Options screen ucp_prefs_view_radio_buttons_append @@ -776,7 +789,7 @@ ucp_prefs_view_radio_buttons_append + styles/prosilver/template/ucp_prefs_view.html + styles/subsilver2/template/ucp_prefs_view.html * Since: 3.1.0-a1 -* Purpose: Add options to the bottom of the radio buttons block of the Edit +* Purpose: Add options to the bottom of the radio buttons block of the Edit Display Options screen ucp_prefs_view_select_menu_prepend @@ -785,7 +798,7 @@ ucp_prefs_view_select_menu_prepend + styles/prosilver/template/ucp_prefs_view.html + styles/subsilver2/template/ucp_prefs_view.html * Since: 3.1.0-a1 -* Purpose: Add options to the top of the drop-down lists block of the Edit +* Purpose: Add options to the top of the drop-down lists block of the Edit Display Options screen ucp_prefs_view_select_menu_append @@ -794,7 +807,7 @@ ucp_prefs_view_select_menu_append + styles/prosilver/template/ucp_prefs_view.html + styles/subsilver2/template/ucp_prefs_view.html * Since: 3.1.0-a1 -* Purpose: Add options to the bottom of the drop-down lists block of the Edit +* Purpose: Add options to the bottom of the drop-down lists block of the Edit Display Options screen ucp_friend_list_before diff --git a/phpBB/styles/prosilver/template/navbar_header.html b/phpBB/styles/prosilver/template/navbar_header.html index 1eb120ef3e..df9167070b 100644 --- a/phpBB/styles/prosilver/template/navbar_header.html +++ b/phpBB/styles/prosilver/template/navbar_header.html @@ -10,7 +10,7 @@ -
  • {CURRENT_USER_AVATAR} {CURRENT_USERNAME_FULL}
  • +
  • {CURRENT_USER_AVATAR} {CURRENT_USERNAME_FULL}
  • -- cgit v1.2.1 From 99e9f198b0db603b5a65aa5025d4795d3ca15df8 Mon Sep 17 00:00:00 2001 From: imkingdavid Date: Mon, 12 May 2014 16:32:09 +0000 Subject: [ticket/12532] Add navbar_header_logged_out_content event PHPBB3-12532 --- phpBB/docs/events.md | 7 +++++++ phpBB/styles/prosilver/template/navbar_header.html | 13 ++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) (limited to 'phpBB') diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index bd148ffff2..678a13104f 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -351,6 +351,13 @@ navbar_header_username_append * Since: 3.1.0-b4 * Purpose: Add text and HTMl after the username shown in the navbar. +navbar_header_logged_out_content +=== +* Locations: + + styles/prosilver/template/navbar_header.html +* Since: 3.1.0-b4 +* Purpose: Add text and HTML in place of the username when not logged in. + navbar_header_username_prepend === * Locations: diff --git a/phpBB/styles/prosilver/template/navbar_header.html b/phpBB/styles/prosilver/template/navbar_header.html index df9167070b..1ed42ef94c 100644 --- a/phpBB/styles/prosilver/template/navbar_header.html +++ b/phpBB/styles/prosilver/template/navbar_header.html @@ -10,7 +10,18 @@ -
  • {CURRENT_USER_AVATAR} {CURRENT_USERNAME_FULL}
  • +
  • + + + + {CURRENT_USER_AVATAR} + + {CURRENT_USERNAME_FULL} + + + + +
  • -- cgit v1.2.1 From 5b02613a8332a0a8c5f69374dcdf5a17b04855a8 Mon Sep 17 00:00:00 2001 From: imkingdavid Date: Mon, 12 May 2014 17:21:20 +0000 Subject: [ticket/12532] Fix tab -> space indentation in events.md PHPBB3-12532 --- phpBB/docs/events.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB') diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 678a13104f..48268ba02f 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -354,7 +354,7 @@ navbar_header_username_append navbar_header_logged_out_content === * Locations: - + styles/prosilver/template/navbar_header.html + + styles/prosilver/template/navbar_header.html * Since: 3.1.0-b4 * Purpose: Add text and HTML in place of the username when not logged in. -- cgit v1.2.1 From 12590af750010c422dd38dcc130ad6d25b919743 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Mon, 23 Jun 2014 19:59:59 +0530 Subject: [ticket/12532] Move logged_out event into its own
  • PHPBB3-12532 --- phpBB/styles/prosilver/template/navbar_header.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'phpBB') diff --git a/phpBB/styles/prosilver/template/navbar_header.html b/phpBB/styles/prosilver/template/navbar_header.html index 1ed42ef94c..f8cff2e1ec 100644 --- a/phpBB/styles/prosilver/template/navbar_header.html +++ b/phpBB/styles/prosilver/template/navbar_header.html @@ -10,18 +10,20 @@
  • -
  • - + +
  • {CURRENT_USER_AVATAR} {CURRENT_USERNAME_FULL} - +
  • + +
  • - -
  • + + -- cgit v1.2.1