Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
delivery.php
1<?php
8namespace Bitrix\Sale;
9
12
13Loc::loadMessages(__FILE__);
14
15class DeliveryTable extends Entity\DataManager
16{
17 public static function getTableName()
18 {
19 return 'b_sale_delivery';
20 }
21
22 public static function getMap()
23 {
24 return array(
25 'ID' => array(
26 'data_type' => 'integer',
27 'primary' => true,
28 'autocomplete' => true,
29 ),
30 'NAME' => array(
31 'data_type' => 'string'
32 ),
33 'LID' => array(
34 'data_type' => 'string'
35 )
36 );
37 }
38}
static loadMessages($file)
Definition loc.php:64