Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
groupqueue.php
1
<?php
8
namespace
Bitrix\Sender\Internals\Model
;
9
10
use
Bitrix\Main\Entity
;
11
use
Bitrix\Main\Localization\Loc
;
12
13
Loc::loadMessages
(__FILE__);
14
31
class
GroupQueueTable
extends
Entity\DataManager
32
{
33
const
TYPE
= [
34
'POSTING'
=> 1,
35
'REST'
=> 2,
36
];
37
43
public
static
function
getTableName
()
44
{
45
return
'b_sender_group_queue'
;
46
}
47
53
public
static
function
getMap
()
54
{
55
return
array(
56
'ID'
=> array(
57
'data_type'
=>
'integer'
,
58
'autocomplete'
=>
true
,
59
'primary'
=>
true
,
60
),
61
'DATE_INSERT'
=> array(
62
'data_type'
=>
'datetime'
,
63
),
64
'TYPE'
=> array(
65
'data_type'
=>
'integer'
,
66
),
67
'ENTITY_ID'
=> array(
68
'data_type'
=>
'integer'
,
69
),
70
'GROUP_ID'
=> array(
71
'data_type'
=>
'integer'
,
72
),
73
);
74
}
75
}
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\Sender\Internals\Model\GroupQueueTable
Definition
groupqueue.php:32
Bitrix\Sender\Internals\Model\GroupQueueTable\getMap
static getMap()
Definition
groupqueue.php:53
Bitrix\Sender\Internals\Model\GroupQueueTable\TYPE
const TYPE
Definition
groupqueue.php:33
Bitrix\Sender\Internals\Model\GroupQueueTable\getTableName
static getTableName()
Definition
groupqueue.php:43
Bitrix\Sender\Internals\Model
Definition
abuse.php:3
modules
sender
lib
internals
model
groupqueue.php
Создано системой
1.10.0