Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
statuslang.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
StatusLangTable
extends
Entity\DataManager
16
{
17
public
static
function
getTableName
()
18
{
19
return
'b_sale_status_lang'
;
20
}
21
22
public
static
function
getMap
()
23
{
24
return
array(
25
'STATUS_ID'
=> array(
26
'data_type'
=>
'string'
,
27
'primary'
=>
true
28
),
29
// field for filter operation on entity
30
'ID'
=> array(
31
'data_type'
=>
'string'
,
32
'expression'
=> array(
33
'%s'
,
'STATUS_ID'
34
)
35
),
36
'LID'
=> array(
37
'data_type'
=>
'string'
38
),
39
'NAME'
=> array(
40
'data_type'
=>
'string'
41
),
42
'DESCRIPTION'
=> array(
43
'data_type'
=>
'string'
44
)
45
);
46
}
47
}
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\Internals\StatusLangTable
Definition
status_lang.php:32
Bitrix\Sale\StatusLangTable\getMap
static getMap()
Definition
statuslang.php:22
Bitrix\Sale\StatusLangTable\getTableName
static getTableName()
Definition
statuslang.php:17
Bitrix\Sale
modules
sale
lib
statuslang.php
Создано системой
1.10.0