Skip to content
Snippets Groups Projects
Commit af5244a5 authored by Alexander Schnitzler's avatar Alexander Schnitzler Committed by Georg Ringer
Browse files

[TASK] Improve deprecation messages in ExtensionUtility

This patch enriches the deprecation messages with important
information such as extension, plugin and vendor name to be
able to distinguish deprecation messages from each other and
to ease the location of affected code.

Releases: master
Resolves: #90914
Change-Id: Ia6bdd7ffa7539214de41f1b55ebe83bb66190b5f
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64035


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent 067d81a4
Branches
Tags
No related merge requests found
......@@ -52,11 +52,11 @@ class ExtensionUtility
$vendorName = null;
$delimiterPosition = strrpos($extensionName, '.');
if ($delimiterPosition !== false) {
$vendorName = str_replace('.', '\\', substr($extensionName, 0, $delimiterPosition));
trigger_error(
'Calling method ' . __METHOD__ . 'with argument $extensionName containing the vendor name is deprecated and will stop working in TYPO3 11.0.',
'Calling method ' . __METHOD__ . ' with argument $extensionName ("' . $extensionName . '") containing the vendor name ("' . $vendorName . '") is deprecated and will stop working in TYPO3 11.0.',
E_USER_DEPRECATED
);
$vendorName = str_replace('.', '\\', substr($extensionName, 0, $delimiterPosition));
$extensionName = substr($extensionName, $delimiterPosition + 1);
if (!empty($vendorName)) {
......@@ -78,7 +78,7 @@ class ExtensionUtility
}
} else {
trigger_error(
'Calling ' . __METHOD__ . ' with controller aliases in argument $controllerActions is deprecated and will stop working in TYPO3 11.0.',
'Calling ' . __METHOD__ . ' for extension ("' . $extensionName . '") and plugin ("' . $pluginName . '") with controller aliases in argument $controllerActions is deprecated and will stop working in TYPO3 11.0.',
E_USER_DEPRECATED
);
$controllerAlias = $controllerClassName;
......@@ -93,7 +93,7 @@ class ExtensionUtility
if (isset($nonCacheableControllerActions[$controllerAlias]) && !empty($nonCacheableControllerActions[$controllerAlias])) {
trigger_error(
'Calling ' . __METHOD__ . ' with controller aliases in argument $nonCacheableControllerActions is deprecated and will stop working in TYPO3 11.0.',
'Calling ' . __METHOD__ . ' for extension ("' . $extensionName . '") and plugin ("' . $pluginName . '") with controller aliases in argument $nonCacheableControllerActions is deprecated and will stop working in TYPO3 11.0.',
E_USER_DEPRECATED
);
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['extbase']['extensions'][$extensionName]['plugins'][$pluginName]['controllers'][$controllerClassName]['nonCacheableActions'] = \TYPO3\CMS\Core\Utility\GeneralUtility::trimExplode(
......@@ -159,8 +159,9 @@ tt_content.' . $pluginSignature . ' {
$delimiterPosition = strrpos($extensionName, '.');
if ($delimiterPosition !== false) {
$vendorName = str_replace('.', '\\', substr($extensionName, 0, $delimiterPosition));
trigger_error(
'Calling method ' . __METHOD__ . ' with argument $extensionName containing the vendor name is deprecated and will stop working in TYPO3 11.0.',
'Calling method ' . __METHOD__ . ' with argument $extensionName ("' . $extensionName . '") containing the vendor name ("' . $vendorName . '") is deprecated and will stop working in TYPO3 11.0.',
E_USER_DEPRECATED
);
$extensionName = substr($extensionName, $delimiterPosition + 1);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment