Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
paysystemrestriction.php
1<?php
9
11
12Loc::loadMessages(__FILE__);
13
30class PaySystemRestrictionTable extends \Bitrix\Main\Entity\DataManager
31{
32 public static function getTableName()
33 {
34 return 'b_sale_pay_system_rstr';
35 }
36
37 public static function getMap()
38 {
39 return array(
40 'ID' => array(
41 'data_type' => 'integer',
42 'primary' => true,
43 'autocomplete' => true
44 ),
45 'PAY_SYSTEM_ID' => array(
46 'data_type' => 'integer'
47 ),
48 'SORT' => array(
49 'data_type' => 'integer'
50 ),
51 'CLASS_NAME' => array(
52 'data_type' => 'string'
53 ),
54 'PARAMS' => array(
55 'data_type' => 'string'
56 )
57 );
58 }
59}
static loadMessages($file)
Definition loc.php:64