Actions
Bug #54866
closedmake ExtensionManagementUtility known to ext_localconf.php
Status:
Rejected
Priority:
Could have
Assignee:
-
Category:
-
Target version:
-
Start date:
2014-01-09
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
During to the upgrade process for TYPO3 6.2 it is necessary to update the files ext_localconf.php and ext_tables.php of an extension.
So e.g. a call
t3lib_extMgm::extPath('myextkey')
must be replaced by
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::extPath('myextkey')
However this adds many more characters to those files.
I would like to use this short call:
ExtensionManagementUtility::extPath('myextkey')
So add a global "use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;" before the files ext_localconf.php and ext_tables.php are included.
Actions