Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
groupqueue.php
1<?php
9
12
13Loc::loadMessages(__FILE__);
14
31class 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}
static loadMessages($file)
Definition loc.php:64