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/service/geoip/ |
Upload File : |
<?php namespace Bitrix\Main\Service\GeoIp; /** * Class ProvidingData * @package Bitrix\Main\Service\GeoIp * * The structure witch contain information about providing data. */ class ProvidingData extends Data { public static function createForCountry(): ProvidingData { $data = new static(); $data->continentName = true; $data->continentCode = true; $data->countryName = true; $data->countryCode = true; return $data; } public static function createForCity(): ProvidingData { $data = static::createForCountry(); $data->regionName = true; $data->regionCode = true; $data->subRegionName = true; $data->subRegionCode = true; $data->cityName = true; $data->cityGeonameId = true; $data->latitude = true; $data->longitude = true; $data->timezone = true; $data->zipCode = true; $data->ispName = true; $data->organizationName = true; $data->asn = true; $data->asnOrganizationName = true; return $data; } }