1 .. include:: ../../Includes.txt
3 ==================================================
4 Deprecation: #86404 - $GLOBALS['TYPO3_LOADED_EXT']
5 ==================================================
12 The global :php:`$GLOBALS['TYPO3_LOADED_EXT']` has been marked as deprecated in favor
13 of the :php:`PackageManager` API.
19 Accessing :php:`$GLOBALS['TYPO3_LOADED_EXT']` is discouraged.
22 Affected Installations
23 ======================
25 Instances with extensions using :php:`$GLOBALS['TYPO3_LOADED_EXT']`.
31 Use the :php:`getActivePackages()` method of
32 :php:`\TYPO3\CMS\Core\Package\PackageManager` to get a list of active
35 .. index:: PHP-API, FullyScanned