[TASK] Rename ExtensionManager class Part 2

The class ExtensionManager is actually a utility
to manage extensions. Rename it to better reflect
it's purpose.

Renaming in submodules will be done seperately.
The third step will then be to remove the old
namespaced class name from the class alias map
and raise the submodule pointers

Related: #42661
Releases: 6.0

Change-Id: I0be22f117e9e4121001b6a14118d289834438066
Reviewed-on: http://review.typo3.org/16163
Reviewed-by: Anja Leichsenring
Reviewed-by: Wouter Wolters
Reviewed-by: Helmut Hummel
Tested-by: Helmut Hummel
This commit is contained in:
Helmut Hummel 2012-11-03 11:46:42 +01:00
parent c39177551a
commit 2bbae1e47d

View file

@ -4,5 +4,5 @@
* and will be removed by 7.0. The class was renamed and is now located at: * and will be removed by 7.0. The class was renamed and is now located at:
* typo3/sysext/feedit/Classes/FrontendEditPanel.php * typo3/sysext/feedit/Classes/FrontendEditPanel.php
*/ */
require_once \TYPO3\CMS\Core\Extension\ExtensionManager::extPath('feedit') . 'Classes/FrontendEditPanel.php'; require_once \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('feedit') . 'Classes/FrontendEditPanel.php';
?> ?>