diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-07-20 13:06:29 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-07-20 13:06:29 +0200 |
commit | 6b658874bb6d502acfc68e74ca2eca643acac579 (patch) | |
tree | 6410f49da90e94c76b914ddc5c903d1f4d58628a /phpBB | |
parent | ebf0bc2134876dc7f281001b51a89aa7ce0f8f9d (diff) | |
parent | 42dc7eb0f5c1c4019f781de0250aae74a0c708e5 (diff) | |
download | forums-6b658874bb6d502acfc68e74ca2eca643acac579.tar forums-6b658874bb6d502acfc68e74ca2eca643acac579.tar.gz forums-6b658874bb6d502acfc68e74ca2eca643acac579.tar.bz2 forums-6b658874bb6d502acfc68e74ca2eca643acac579.tar.xz forums-6b658874bb6d502acfc68e74ca2eca643acac579.zip |
Merge pull request #3754 from rxu/ticket/14002
[ticket/14002] Add template events before/after user details in ucp_main_front.html
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/docs/events.md | 16 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_main_front.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/ucp_main_front.html | 2 |
3 files changed, 20 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 46bd85a3bc..f811fae331 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -1231,6 +1231,22 @@ ucp_agreement_terms_before * Since: 3.1.0-b3 * Purpose: Add content before the terms of agreement text at user registration +ucp_main_front_user_activity_after +=== +* Locations: + + styles/prosilver/template/ucp_main_front.html + + styles/subsilver2/template/ucp_main_front.html +* Since: 3.1.6-RC1 +* Purpose: Add content right after the user activity info viewing UCP front page + +ucp_main_front_user_activity_before +=== +* Locations: + + styles/prosilver/template/ucp_main_front.html + + styles/subsilver2/template/ucp_main_front.html +* Since: 3.1.6-RC1 +* Purpose: Add content right before the user activity info viewing UCP front page + ucp_pm_viewmessage_avatar_after === * Locations: diff --git a/phpBB/styles/prosilver/template/ucp_main_front.html b/phpBB/styles/prosilver/template/ucp_main_front.html index 942d26edc6..7bc8d40078 100644 --- a/phpBB/styles/prosilver/template/ucp_main_front.html +++ b/phpBB/styles/prosilver/template/ucp_main_front.html @@ -53,6 +53,7 @@ <h3>{L_YOUR_DETAILS}</h3> +<!-- EVENT ucp_main_front_user_activity_before --> <dl class="details"> <dt>{L_JOINED}{L_COLON}</dt> <dd>{JOINED}</dd> <dt>{L_LAST_ACTIVE}{L_COLON}</dt> <dd>{LAST_VISIT_YOU}</dd> @@ -61,6 +62,7 @@ <!-- IF ACTIVE_TOPIC != '' --><dt>{L_ACTIVE_IN_TOPIC}{L_COLON}</dt> <dd><strong><a href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></strong><br />({ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT})</dd><!-- ENDIF --> <!-- IF WARNINGS --><dt>{L_YOUR_WARNINGS}{L_COLON}</dt> <dd class="error">{WARNING_IMG} [{WARNINGS}]</dd><!-- ENDIF --> </dl> +<!-- EVENT ucp_main_front_user_activity_after --> </div> </div> diff --git a/phpBB/styles/subsilver2/template/ucp_main_front.html b/phpBB/styles/subsilver2/template/ucp_main_front.html index 5dea2b4f03..7fc906a126 100644 --- a/phpBB/styles/subsilver2/template/ucp_main_front.html +++ b/phpBB/styles/subsilver2/template/ucp_main_front.html @@ -35,6 +35,7 @@ <th colspan="3">{L_YOUR_DETAILS}</th> </tr> <tr> +<!-- EVENT ucp_main_front_user_activity_before --> <td class="row1" colspan="3"> <table width="100%" cellspacing="1" cellpadding="4"> <tr> @@ -63,6 +64,7 @@ <!-- ENDIF --> </table> </td> +<!-- EVENT ucp_main_front_user_activity_after --> </tr> <tr> <td class="cat" colspan="3"> </td> |