1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
include.php
См. документацию.
1<?php
2
3$DB_test = CDatabase::GetModuleConnection('statistic', true);
4if(!is_object($DB_test))
5{
6 return false;
7}
8
10
11require_once $_SERVER['DOCUMENT_ROOT'] . '/bitrix/modules/statistic/stat_tools.php';
12require_once $_SERVER['DOCUMENT_ROOT'] . '/bitrix/modules/statistic/ip_tools.php';
13/*patchlimitationmutatormark1*/
14$dbType = mb_strtolower($DB_test->type);
15CModule::AddAutoloadClasses(
16 'statistic',
17 [
18 'CKeepStatistics' => 'classes/general/keepstatistic.php',
19 'CAllStatistics' => 'classes/general/statistic.php',
20 'CStatistics' => 'classes/' . $dbType . '/statistic.php',
21 'CAdv' => 'classes/' . $dbType . '/adv.php',
22 'CGuest' => 'classes/' . $dbType . '/guest.php',
23 'CTraffic' => 'classes/' . $dbType . '/traffic.php',
24 'CUserOnline' => 'classes/' . $dbType . '/useronline.php',
25 'CStoplist' => 'classes/' . $dbType . '/stoplist.php',
26 'CHit' => 'classes/general/hit.php',
27 'CSession' => 'classes/' . $dbType . '/session.php',
28 'CReferer' => 'classes/general/referer.php',
29 'CPhrase' => 'classes/general/phrase.php',
30 'CSearcher' => 'classes/' . $dbType . '/searcher.php',
31 'CSearcherHit' => 'classes/general/searcherhit.php',
32 'CPage' => 'classes/' . $dbType . '/page.php',
33 'CStatEvent' => 'classes/' . $dbType . '/statevent.php',
34 'CStatEventType' => 'classes/' . $dbType . '/stateventtype.php',
35 'CAutoDetect' => 'classes/' . $dbType . '/autodetect.php',
36 'CCountry' => 'classes/general/country.php',
37 'CCity' => 'classes/general/city.php',
38 'CStatRegion' => 'classes/general/city.php',
39 'CCityLookup' => 'classes/general/city.php',
40 'CCityLookup_geoip_mod' => 'tools/geoip_mod.php',
41 'CCityLookup_geoip_extension' => 'tools/geoip_extension.php',
42 'CCityLookup_geoip_pure' => 'tools/geoip_pure.php',
43 'CCityLookup_stat_table' => 'tools/stat_table.php',
44 'CPath' => 'classes/general/path.php',
45
46 'CStat' => 'classes/general/statistic_old.php',
47 'CVisit' => 'classes/general/statistic_old.php',
48 'CStatCountry' => 'classes/general/statistic_old.php',
49 'CAllStatistic' => 'classes/general/statistic_old.php',
50 'CStatistic' => 'classes/general/statistic_old.php',
51 'CStatResult' => 'classes/general/statresult.php',
52 'statistic' => 'install/index.php',
53 ]
54);
$dbType
Определения autoload.php:6
$_SERVER["DOCUMENT_ROOT"]
Определения cron_frame.php:9
IncludeModuleLangFile($filepath, $lang=false, $bReturnArray=false)
Определения tools.php:3778
$DB_test
Определения include.php:71