Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
userstoredauthtable.php
1
<?php
2
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
Definition
userstoredauthtable.php:32
Bitrix\Main\Authentication\Internal\UserStoredAuthTable\getMap
static getMap()
Definition
userstoredauthtable.php:40
Bitrix\Main\Authentication\Internal\UserStoredAuthTable\getTableName
static getTableName()
Definition
userstoredauthtable.php:35
Bitrix\Main\ORM\Data\DataManager
Definition
datamanager.php:33
Bitrix\Main\ORM\Fields\BooleanField
Definition
booleanfield.php:20
Bitrix\Main\ORM\Fields\DatetimeField
Definition
datetimefield.php:22
Bitrix\Main\ORM\Fields\StringField
Definition
stringfield.php:20
Bitrix\Main\Authentication\Internal
Definition
groupsubordinatetable.php:10
Bitrix\Main\ORM\Data
Definition
addresult.php:9
Bitrix\Main\ORM\Fields
Definition
arrayfield.php:9
modules
main
lib
authentication
internal
userstoredauthtable.php
Создано системой
1.10.0