Skip to content
Snippets Groups Projects
Commit 4485151f authored by Georg Ringer's avatar Georg Ringer Committed by Susanne Moog
Browse files

[TASK] Deprecate ClientUtility::getDeviceType

The method ClientUtility::getDeviceType is not used
and completely outdated.

Resolves: #79560
Releases: master
Change-Id: Ib1b54a3a20aa70724e1995eb5d123ba4e0c218c1
Reviewed-on: https://review.typo3.org/51476


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: default avatarSusanne Moog <susanne.moog@typo3.org>
Tested-by: default avatarSusanne Moog <susanne.moog@typo3.org>
parent d47c3327
Branches
Tags
No related merge requests found
......@@ -185,9 +185,11 @@ class ClientUtility
*
* @param string $userAgent The useragent string, \TYPO3\CMS\Core\Utility\GeneralUtility::getIndpEnv('HTTP_USER_AGENT')
* @return string Code for the specific device type
* @deprecated since TYPO3 v8, will be removed in TYPO3 v9
*/
public static function getDeviceType($userAgent)
{
GeneralUtility::logDeprecatedFunction();
// Hook: $TYPO3_CONF_VARS['SC_OPTIONS']['t3lib/div/class.t3lib_utility_client.php']['getDeviceType']:
$getDeviceTypeHooks = &$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/div/class.t3lib_utility_client.php']['getDeviceType'];
if (is_array($getDeviceTypeHooks)) {
......
.. include:: ../../Includes.txt
============================================================
Deprecation: #79560 - Deprecate ClientUtility::getDeviceType
============================================================
See :issue:`79560`
Description
===========
The method :php:`\TYPO3\CMS\Core\Utility\ClientUtility::getDeviceType` is not used and completely outdated and has been marked as deprecated.
Impact
======
Calling :php:`\TYPO3\CMS\Core\Utility\ClientUtility::getDeviceType` method will trigger a deprecation log entry. Code using this method will work until it is removed in TYPO3 v9.
Affected Installations
======================
Any installation using the mentioned method :php:`\TYPO3\CMS\Core\Utility\ClientUtility::getDeviceType`.
.. index:: PHP-API
\ No newline at end of file
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