1.. include:: ../../Includes.txt
2
3==================================================
4Deprecation: #86404 - $GLOBALS['TYPO3_LOADED_EXT']
5==================================================
6
7See :issue:`86404`
8
9Description
10===========
11
12The global :php:`$GLOBALS['TYPO3_LOADED_EXT']` has been marked as deprecated in favor
13of the :php:`PackageManager` API.
14
15
16Impact
17======
18
19Accessing :php:`$GLOBALS['TYPO3_LOADED_EXT']` is discouraged.
20
21
22Affected Installations
23======================
24
25Instances with extensions using :php:`$GLOBALS['TYPO3_LOADED_EXT']`.
26
27
28Migration
29=========
30
31Use the :php:`getActivePackages()` method of
32:php:`\TYPO3\CMS\Core\Package\PackageManager` to get a list of active
33packages.
34
35.. index:: PHP-API, FullyScanned
36