Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/web/useragent/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage main * @copyright 2001-2022 Bitrix */ namespace Bitrix\Main\Web\UserAgent; use Bitrix\Main\Localization\Loc; class DeviceType { public const UNKNOWN = 0; public const DESKTOP = 1; public const MOBILE_PHONE = 2; public const TABLET = 3; public const TV = 4; public static function getDescription($lang = null): array { static $description = []; if (!isset($description[$lang ?? ''])) { $description[$lang ?? ''] = [ self::UNKNOWN => Loc::getMessage('main_devicetype_unknown', null, $lang), self::DESKTOP => Loc::getMessage('main_devicetype_desktop', null, $lang), self::MOBILE_PHONE => Loc::getMessage('main_devicetype_phone', null, $lang), self::TABLET => Loc::getMessage('main_devicetype_tablet', null, $lang), self::TV => Loc::getMessage('main_devicetype_tv', null, $lang), ]; } return $description[$lang ?? '']; } }