Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
queue.php
1
<?php
8
namespace
Bitrix\Sender\Internals\Model
;
9
10
use
Bitrix\Main\Entity
;
11
use
Bitrix\Main\Type\DateTime
;
12
use
Bitrix\Main\Localization\Loc
;
13
use Bitrix\Crm\WebForm\Helper;
14
15
Loc::loadMessages
(__FILE__);
16
33
class
QueueTable
extends
Entity\DataManager
34
{
35
public
static
function
getTableName
()
36
{
37
return
'b_sender_queue'
;
38
}
39
40
public
static
function
getMap
()
41
{
42
return
array(
43
'ENTITY_TYPE'
=> array(
44
'data_type'
=>
'string'
,
45
'primary'
=>
true
,
46
),
47
'ENTITY_ID'
=> array(
48
'data_type'
=>
'string'
,
49
'primary'
=>
true
,
50
),
51
'LAST_ITEM'
=> array(
52
'data_type'
=>
'string'
,
53
'required'
=>
true
,
54
),
55
);
56
}
57
63
public
static
function
getConflictFields
(): array
64
{
65
return
[
66
'ENTITY_TYPE'
,
67
'ENTITY_ID'
,
68
];
69
}
70
}
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\Main\Type\DateTime
Definition
datetime.php:9
Bitrix\Sender\Internals\Model\QueueTable
Definition
queue.php:34
Bitrix\Sender\Internals\Model\QueueTable\getMap
static getMap()
Definition
queue.php:40
Bitrix\Sender\Internals\Model\QueueTable\getConflictFields
static getConflictFields()
Definition
queue.php:63
Bitrix\Sender\Internals\Model\QueueTable\getTableName
static getTableName()
Definition
queue.php:35
Bitrix\Sender\Internals\Model
Definition
abuse.php:3
modules
sender
lib
internals
model
queue.php
Создано системой
1.10.0