From 31665995b03d9bed34fa0f76d73b5ebf8e2b396a Mon Sep 17 00:00:00 2001 From: Christian Schnegelberger Date: Sun, 28 Sep 2025 12:17:52 +0200 Subject: [PATCH 1/3] [ticket/17536] Addings four events to acp_forums.html fieldset PHPBB-17536 --- phpBB/adm/style/acp_forums.html | 4 ++++ phpBB/docs/events.md | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index f51ce98776..915751b425 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -189,11 +189,13 @@
{L_GENERAL_FORUM_SETTINGS} + {% EVENT acp_forum_cat_options_prepend %}

{L_DISPLAY_ACTIVE_TOPICS_EXPLAIN}
+ {% EVENT acp_forum_cat_options_append %}
@@ -307,6 +309,7 @@ diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 35c3e59c6f..38d441bba5 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -108,12 +108,36 @@ acp_ext_list_not_installed_title_after * Changed: 3.3.14 Renamed from acp_ext_list_available_title_after * Purpose: Add text after not installed extensions section title. +acp_forums_cat_options_prepend +=== +* Location: adm/style/acp_forums.html +* Since: 3.3.16-RC1 +* Purpose: Add additional settings to a forum type 'category' within 'General forum settings' fieldset + +acp_forums_cat_options_append +=== +* Location: adm/style/acp_forums.html +* Since: 3.3.16-RC1 +* Purpose: Add additional settings to a forum type 'category' within 'General forum settings' fieldset + acp_forums_custom_settings === * Location: adm/style/acp_forums.html * Since: 3.1.6-RC1 * Purpose: Add its own box (fieldset) for extension settings +acp_forums_link_options_prepend +=== +* Location: adm/style/acp_forums.html +* Since: 3.3.16-RC1 +* Purpose: Add additional settings to a forum type 'link' within 'General forum settings' fieldset + +acp_forums_link_options_append +=== +* Location: adm/style/acp_forums.html +* Since: 3.3.16-RC1 +* Purpose: Add additional settings to a forum type 'link' within 'General forum settings' fieldset + acp_forums_main_settings_append === * Location: adm/style/acp_forums.html From ed5359ce97835909cb2304c11de6bced61a56182 Mon Sep 17 00:00:00 2001 From: Christian Schnegelberger Date: Sat, 4 Oct 2025 18:22:54 +0200 Subject: [PATCH 2/3] [ticket/17536] Change order in events.md of new events PHPBB-17536 --- phpBB/docs/events.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md index 38d441bba5..0209c05b26 100644 --- a/phpBB/docs/events.md +++ b/phpBB/docs/events.md @@ -108,13 +108,13 @@ acp_ext_list_not_installed_title_after * Changed: 3.3.14 Renamed from acp_ext_list_available_title_after * Purpose: Add text after not installed extensions section title. -acp_forums_cat_options_prepend +acp_forums_cat_options_append === * Location: adm/style/acp_forums.html * Since: 3.3.16-RC1 * Purpose: Add additional settings to a forum type 'category' within 'General forum settings' fieldset -acp_forums_cat_options_append +acp_forums_cat_options_prepend === * Location: adm/style/acp_forums.html * Since: 3.3.16-RC1 @@ -126,13 +126,13 @@ acp_forums_custom_settings * Since: 3.1.6-RC1 * Purpose: Add its own box (fieldset) for extension settings -acp_forums_link_options_prepend +acp_forums_link_options_append === * Location: adm/style/acp_forums.html * Since: 3.3.16-RC1 * Purpose: Add additional settings to a forum type 'link' within 'General forum settings' fieldset -acp_forums_link_options_append +acp_forums_link_options_prepend === * Location: adm/style/acp_forums.html * Since: 3.3.16-RC1 From fd74f70468edc73328ba8746c9b9e64cbb48a3ba Mon Sep 17 00:00:00 2001 From: Christian Schnegelberger Date: Sat, 4 Oct 2025 18:34:09 +0200 Subject: [PATCH 3/3] [ticket/17536] Fix typo in new acp_forums event names PHPBB-17536 --- phpBB/adm/style/acp_forums.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index 915751b425..c1d0020955 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -189,13 +189,13 @@
{L_GENERAL_FORUM_SETTINGS} - {% EVENT acp_forum_cat_options_prepend %} + {% EVENT acp_forums_cat_options_prepend %}

{L_DISPLAY_ACTIVE_TOPICS_EXPLAIN}
- {% EVENT acp_forum_cat_options_append %} + {% EVENT acp_forums_cat_options_append %}
@@ -309,7 +309,7 @@