Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
paysystem.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
PaySystemTable
extends
Entity\DataManager
16
{
17
public
static
function
getTableName
()
18
{
19
return
'b_sale_pay_system'
;
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
'LID'
=> array(
31
'data_type'
=>
'string'
32
),
33
'CURRENCY'
=> array(
34
'data_type'
=>
'string'
35
),
36
'NAME'
=> array(
37
'data_type'
=>
'string'
38
),
39
'ACTIVE'
=> array(
40
'data_type'
=>
'boolean'
,
41
'values'
=> array(
'N'
,
'Y'
)
42
),
43
'SORT'
=> array(
44
'data_type'
=>
'integer'
45
),
46
'DESCRIPTION'
=> array(
47
'data_type'
=>
'string'
48
)
49
);
50
}
51
}
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\PaySystemTable
Definition
paysystem.php:16
Bitrix\Sale\PaySystemTable\getMap
static getMap()
Definition
paysystem.php:22
Bitrix\Sale\PaySystemTable\getTableName
static getTableName()
Definition
paysystem.php:17
Bitrix\Sale
modules
sale
lib
paysystem.php
Создано системой
1.10.0