From 08b6fbefc25c545b15d52f3d15626f07caccdf83 Mon Sep 17 00:00:00 2001 From: Fedik Date: Sat, 1 Mar 2025 12:49:47 +0200 Subject: [PATCH 1/2] CMSPlugin: Deprecate use of DispatcherAware and LanguageAware --- migrations/52-53/new-deprecations.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/migrations/52-53/new-deprecations.md b/migrations/52-53/new-deprecations.md index 24aaf49d..fc064292 100644 --- a/migrations/52-53/new-deprecations.md +++ b/migrations/52-53/new-deprecations.md @@ -60,3 +60,12 @@ PR: https://github.com/joomla/joomla-cms/pull/43396 Deprecate the namespace property of the ComponentRecord class. The property were never initialised. PR: https://github.com/joomla/joomla-cms/pull/44754 + +## Plugins deprecations + +# CMSPlugin: Deprecate use of DispatcherAware and LanguageAware + +Plugin should use DispatcherAware on its own, when it needs to dispatch an event, like for example content/finder. +And language cannot be set on plugin while plugin booting, because it is not available until initialisation of the application is completed. + +PR: https://github.com/joomla/joomla-cms/pull/43430 From 6e40ef4053766f74eb289ba9c3597b54966b7e37 Mon Sep 17 00:00:00 2001 From: Fedik Date: Sun, 2 Mar 2025 17:05:33 +0200 Subject: [PATCH 2/2] fix --- migrations/52-53/new-deprecations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/52-53/new-deprecations.md b/migrations/52-53/new-deprecations.md index fc064292..396b76d4 100644 --- a/migrations/52-53/new-deprecations.md +++ b/migrations/52-53/new-deprecations.md @@ -63,7 +63,7 @@ PR: https://github.com/joomla/joomla-cms/pull/44754 ## Plugins deprecations -# CMSPlugin: Deprecate use of DispatcherAware and LanguageAware +### CMSPlugin: Deprecate use of DispatcherAware and LanguageAware Plugin should use DispatcherAware on its own, when it needs to dispatch an event, like for example content/finder. And language cannot be set on plugin while plugin booting, because it is not available until initialisation of the application is completed.