Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
delivery.php
1
<?php
8
namespace
Bitrix\Sale
;
9
10
use
Bitrix\Main\Entity
;
11
use
Bitrix\Main\Localization\Loc
;
12
13
Loc::loadMessages
(__FILE__);
14
15
class
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
}
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\Sale\DeliveryTable
Definition
delivery.php:16
Bitrix\Sale\DeliveryTable\getMap
static getMap()
Definition
delivery.php:22
Bitrix\Sale\DeliveryTable\getTableName
static getTableName()
Definition
delivery.php:17
Bitrix\Sale
modules
sale
lib
delivery.php
Создано системой
1.10.0