1C-Bitrix
25.700.0
Загрузка...
Поиск...
Не найдено
useraccess.php
См. документацию.
1
<?php
2
3
namespace
Bitrix\Main;
4
21
class
UserAccessTable
extends
Entity\DataManager
22
{
23
public
static
function
getTableName
()
24
{
25
return
'b_user_access'
;
26
}
27
28
public
static
function
getMap
()
29
{
30
return
array
(
31
'USER_ID'
=>
array
(
32
'data_type'
=>
'integer'
,
33
'primary'
=>
true
,
34
),
35
'PROVIDER_ID'
=>
array
(
36
'data_type'
=>
'string'
,
37
'primary'
=>
true
,
38
'validation'
=>
array
(__CLASS__,
'validateProviderId'
),
39
),
40
'ACCESS_CODE'
=>
array
(
41
'data_type'
=>
'string'
,
42
'primary'
=>
true
,
43
'validation'
=>
array
(__CLASS__,
'validateAccessCode'
),
44
),
45
);
46
}
47
48
public
static
function
validateProviderId
()
49
{
50
return
array
(
51
new
Entity
\Validator\Length(
null
, 50),
52
);
53
}
54
55
public
static
function
validateAccessCode
()
56
{
57
return
array
(
58
new
Entity
\Validator\Length(
null
, 100),
59
);
60
}
61
62
public
static
function
isCacheable
(): bool
63
{
64
return
false
;
65
}
66
}
Bitrix\Main\UserAccessTable
Определения
useraccess.php:22
Bitrix\Main\UserAccessTable\getMap
static getMap()
Определения
useraccess.php:28
Bitrix\Main\UserAccessTable\isCacheable
static isCacheable()
Определения
useraccess.php:62
Bitrix\Main\UserAccessTable\validateAccessCode
static validateAccessCode()
Определения
useraccess.php:55
Bitrix\Main\UserAccessTable\validateProviderId
static validateProviderId()
Определения
useraccess.php:48
Bitrix\Main\UserAccessTable\getTableName
static getTableName()
Определения
useraccess.php:23
array
</td ></tr ></table ></td ></tr >< tr >< td class="bx-popup-label bx-width30"><?=GetMessage("PAGE_NEW_TAGS")?> array( $site)
Определения
file_new.php:804
Bitrix\Main\Entity
Определения
ufield.php:9
bitrix
modules
main
lib
useraccess.php
Создано системой
1.14.0