1C-Bitrix
25.700.0
Загрузка...
Поиск...
Не найдено
userstoredauthtable.php
См. документацию.
1
<?php
2
9
10
namespace
Bitrix\Main\Authentication\Internal;
11
12
use Bitrix\Main\ORM\Data;
13
use Bitrix\Main\ORM\Fields;
14
31
class
UserStoredAuthTable
extends
Data\DataManager
32
{
33
use Data\Internal\DeleteByFilterTrait;
34
35
public
static
function
getTableName
()
36
{
37
return
'b_user_stored_auth'
;
38
}
39
40
public
static
function
getMap
()
41
{
42
return
[
43
(
new
Fields\IntegerField
(
'ID'
))
44
->configurePrimary(
true
)
45
->configureAutocomplete(
true
),
46
47
(
new
Fields\IntegerField
(
'USER_ID'
)),
48
49
(
new
Fields
\
DatetimeField
(
'DATE_REG'
)),
50
51
(
new
Fields\DatetimeField
(
'LAST_AUTH'
)),
52
53
(
new
Fields
\
StringField
(
'STORED_HASH'
)),
54
55
(
new
Fields\BooleanField
(
'TEMP_HASH'
))
56
->configureValues(
'N'
,
'Y'
)
57
->configureDefaultValue(
'N'
),
58
59
(
new
Fields\IntegerField
(
'IP_ADDR'
)),
60
];
61
}
62
}
Bitrix\Main\Authentication\Internal\UserStoredAuthTable
Определения
userstoredauthtable.php:32
Bitrix\Main\Authentication\Internal\UserStoredAuthTable\getMap
static getMap()
Определения
userstoredauthtable.php:40
Bitrix\Main\Authentication\Internal\UserStoredAuthTable\getTableName
static getTableName()
Определения
userstoredauthtable.php:35
Bitrix\Main\ORM\Data\DataManager
Определения
datamanager.php:35
Bitrix\Main\ORM\Fields\BooleanField
Определения
booleanfield.php:20
Bitrix\Main\ORM\Fields\DatetimeField
Определения
datetimefield.php:22
Bitrix\Main\ORM\Fields\IntegerField
Определения
integerfield.php:20
Bitrix\Main\ORM\Fields\StringField
Определения
stringfield.php:20
Bitrix\Main\ORM\Fields
Определения
arrayfield.php:9
bitrix
modules
main
lib
authentication
internal
userstoredauthtable.php
Создано системой
1.14.0