Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
ExportedProductQueueTable.php
1<?php
2
4
7
8Loc::loadMessages(__FILE__);
9
26class ExportedProductQueueTable extends Entity\DataManager
27{
28 public static function getTableName()
29 {
30 return 'b_catalog_exported_product_queue';
31 }
32
33 public static function getMap()
34 {
35 return [
36 'QUEUE_ID' => [
37 'data_type' => 'integer',
38 'primary' => true,
39 ],
40 'PRODUCT_IDS' => [
41 'data_type' => 'string',
42 'required' => false,
43 ],
44 ];
45 }
46}
static loadMessages($file)
Definition loc.php:64