Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
logpage.php
1
<?php
8
namespace
Bitrix\Socialnetwork
;
9
10
use
Bitrix\Main\Entity
;
11
use
Bitrix\Main\Localization\Loc
;
12
13
Loc::loadMessages
(__FILE__);
14
31
class
LogPageTable
extends
Entity\DataManager
32
{
33
public
static
function
getTableName
()
34
{
35
return
'b_sonet_log_page'
;
36
}
37
38
public
static
function
getMap
()
39
{
40
$fieldsMap = array(
41
'USER_ID'
=> array(
42
'data_type'
=>
'integer'
,
43
'primary'
=>
true
44
),
45
'SITE_ID'
=> array(
46
'data_type'
=>
'string'
,
47
'primary'
=>
true
48
),
49
'GROUP_CODE'
=> array(
50
'data_type'
=>
'string'
,
51
'primary'
=>
true
52
),
53
'PAGE_SIZE'
=> array(
54
'data_type'
=>
'integer'
,
55
'primary'
=>
true
56
),
57
'PAGE_NUM'
=> array(
58
'data_type'
=>
'integer'
,
59
'primary'
=>
true
60
),
61
'PAGE_LAST_DATE'
=> array(
62
'data_type'
=>
'datetime'
63
),
64
'TRAFFIC_AVG'
=> array(
65
'data_type'
=>
'integer'
66
),
67
'TRAFFIC_CNT'
=> array(
68
'data_type'
=>
'integer'
69
),
70
'TRAFFIC_LAST_DATE'
=> array(
71
'data_type'
=>
'datetime'
72
)
73
);
74
75
return
$fieldsMap;
76
}
77
}
Bitrix\Main\Localization\Loc
Definition
loc.php:11
Bitrix\Main\Localization\Loc\loadMessages
static loadMessages($file)
Definition
loc.php:64
Bitrix\Main\ORM\Entity
Definition
entity.php:26
Bitrix\Socialnetwork\LogPageTable
Definition
logpage.php:32
Bitrix\Socialnetwork\LogPageTable\getMap
static getMap()
Definition
logpage.php:38
Bitrix\Socialnetwork\LogPageTable\getTableName
static getTableName()
Definition
logpage.php:33
Bitrix\Socialnetwork
modules
socialnetwork
lib
logpage.php
Создано системой
1.10.0