Task #40333
closedTask #40095: Move core to namespaces
Change all Extbase ExtensionUtility::registerModule calls in the core
100%
Description
After #40243 gets merged the vendor name has to be prepended to the EXTKEY parameter of \TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule in all namespaced Extbase modules.
For example in typo3/sysext/about/ext_tables.php:
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule($_EXTKEY, 'help', 'about', 'top', array(
'About' => 'index'
), array(
'access' => 'user,group',
'icon' => 'EXT:about/ext_icon.gif',
'labels' => 'LLL:EXT:lang/locallang_mod_help_about.xlf'
));
has to be changed to:
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule('TYPO3.CMS.' . $_EXTKEY, 'help', 'about', 'top', array(
'About' => 'index'
), array(
'access' => 'user,group',
'icon' => 'EXT:about/ext_icon.gif',
'labels' => 'LLL:EXT:lang/locallang_mod_help_about.xlf'
));
Updated by Gerrit Code Review about 12 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/14196
Updated by Gerrit Code Review about 12 years ago
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/14197
Updated by Gerrit Code Review about 12 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/14196
Updated by Gerrit Code Review about 12 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/14197
Updated by Helmut Hummel about 12 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset b7b7cc0091c5999b390e9898f24dbc69ee36c7a1.