Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
oauth.php
1
<?php
2
3
namespace
Bitrix\Mail\Internals
;
4
5
use
Bitrix\Main\Entity
;
6
23
class
OAuthTable
extends
Entity\DataManager
24
{
25
26
public
static
function
getFilePath
()
27
{
28
return
__FILE__;
29
}
30
31
public
static
function
getTableName
()
32
{
33
return
'b_mail_oauth'
;
34
}
35
36
public
static
function
getMap
()
37
{
38
return
array(
39
'ID'
=> array(
40
'data_type'
=>
'integer'
,
41
'primary'
=>
true
,
42
'autocomplete'
=>
true
,
43
),
44
'UID'
=> array(
45
'data_type'
=>
'string'
,
46
),
47
'TOKEN'
=> array(
48
'data_type'
=> (static::cryptoEnabled(
'TOKENS'
) ?
'crypto'
:
'text'
),
49
),
50
'REFRESH_TOKEN'
=> array(
51
'data_type'
=> (static::cryptoEnabled(
'TOKENS'
) ?
'crypto'
:
'text'
),
52
),
53
'TOKEN_EXPIRES'
=> array(
54
'data_type'
=>
'integer'
,
55
),
56
'SECRET'
=> array(
57
'data_type'
=>
'string'
,
58
),
59
);
60
}
61
62
}
Bitrix\Mail\Internals\OAuthTable
Definition
oauth.php:24
Bitrix\Mail\Internals\OAuthTable\getMap
static getMap()
Definition
oauth.php:36
Bitrix\Mail\Internals\OAuthTable\getFilePath
static getFilePath()
Definition
oauth.php:26
Bitrix\Mail\Internals\OAuthTable\getTableName
static getTableName()
Definition
oauth.php:31
Bitrix\Main\ORM\Data\DataManager
Definition
datamanager.php:33
Bitrix\Main\ORM\Entity
Definition
entity.php:26
Bitrix\Mail\Internals
Definition
domainemail.php:3
modules
mail
lib
internals
oauth.php
Создано системой
1.10.0