File tree Expand file tree Collapse file tree 4 files changed +190
-172
lines changed Expand file tree Collapse file tree 4 files changed +190
-172
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ Some frequently asked questions on Error messages and how to resolve them.
88
99As a developer you somtimes will be stuck in your code.
1010If it happens to you, also have a look on https://joomla.stackexchange.com/ - a huge collection of valuable knowledge.
11- Here we collect some frequently aske questions.
11+ Here we collect some frequently asked questions.
1212
1313Class [ ..] not found
1414--------------------
1515
16- You need to understand the namespace concept as described in sction General Concepts (work in progress)
16+ You need to understand the namespace concept as described in section General Concepts (work in progress)
1717Then check:
1818- Is the namespace defined in your manifest file?
1919- Has every class in your extension the correct namespace?
Original file line number Diff line number Diff line change @@ -6,10 +6,27 @@ New deprecations
66================
77All the new deprecations that should be aware of and what you should now be using instead.
88
9+ :::caution TODO
10+
11+ This page is unfinished, please use the ** Edit this Page** link at the bottom of this page to help make it more useful.
12+
13+ :::
14+
15+
916# Language strings
1017
1118File: administrator/language/en-GB/com_joomlaupdate.ini
1219Strings: INSTL_MB_STRING_OVERLOAD_OFF, INSTL_NOTICEMBSTRINGOVERLOAD
1320
1421File: installation/language/en-GB/joomla.ini
1522Strings: INSTL_MB_STRING_OVERLOAD_OFF, INSTL_NOTICE_MBSTRING_OVERLOAD_OFF
23+
24+ #### The item_associations property of the WebApplication class is deprecated
25+
26+ File: libraries/src/Application/WebApplication.php
27+ Replacement: The $item_associations property will be removed with no replacement as it is not used in core anymore.
28+
29+ #### Privacy plugin app property is deprecated
30+
31+ File: administrator/components/com_privacy/src/Plugin/PrivacyPlugin.php
32+ Replacement: The ` $this->app ` property is deprecated in the privacy plugins. Instead of use ` $this->getApplication() ` when the plugin is converted to service providers.
You can’t perform that action at this time.
0 commit comments