Skip to content

Commit c9bd863

Browse files
authored
Merge pull request #390 from joomla/app
Change app chapter to be moved
2 parents 647836f + 893f83a commit c9bd863

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

migrations/54-60/compat-plugin.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ The plugin is implemented as "Behaviour" plugin type to guarantee that is loaded
1818

1919
For more detail check [Compatibility Plugin Joomla! 5.0](https://manual.joomla.org/migrations/44-50/compat-plugin).
2020

21+
### CMS BaseApplication and CLI classes
22+
23+
- PR's:
24+
- https://github.com/joomla/joomla-cms/pull/42884
25+
- https://github.com/joomla/joomla-cms/pull/44926
26+
- Description: Any reference to the class `\Joomla\CMS\Application\BaseApplication` and `\Joomla\CMS\Application\CliApplication` with the respective CLI input classes should be replaced with the namespace `\Joomla\Application`. Cli apps should be replaced by console plugins.
2127

2228
### JPATH_PLATFORM constant
2329

migrations/54-60/removed-backward-incompatibility.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,6 @@ echo $article->title;
6868
- https://github.com/joomla/joomla-cms/pull/42890
6969
- Description: The CMS Input namespace `\Joomla\CMS\Input` has been removed. The CMS core code has switched the code to the Framework Input library with the namespace `\Joomla\Input`, which is very much a drop-in replacement. This is especially of relevance if you are using the MVC classes, which now use the framework class. Make sure that your code imports the correct class.
7070

71-
### CMS BaseApplication and CLI classes have been removed
72-
73-
- PR: https://github.com/joomla/joomla-cms/pull/42884
74-
- Description: The class `\Joomla\CMS\Application\BaseApplication` and `\Joomla\CMS\Application\CliApplication` respective CLI input classes have been removed. The CMS core code has been switched to use the Application package of the Joomla Framework. Any reference to these classes should be replaced with the namespace `\Joomla\Application`. Cli apps should be replaced by console plugins.
75-
7671
### UTC is used instead of GMT
7772

7873
- PR: https://github.com/joomla/joomla-cms/pull/43912
@@ -240,4 +235,4 @@ $table = Table::getInstance('content');
240235

241236
// New:
242237
$table = new \Joomla\CMS\Table\Content($db);
243-
```
238+
```

0 commit comments

Comments
 (0)