Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
yandexsettings.php
1<?php
3
4use Bitrix\Main\Entity\DataManager,
5 Bitrix\Main\Entity\Validator;
6
24{
25 public static function getTableName()
26 {
27 return 'b_sale_yandex_settings';
28 }
29
30 public static function getMap()
31 {
32 return array(
33 'SHOP_ID' => array(
34 'required' => true,
35 'primary' => true,
36 'data_type' => 'integer',
37 ),
38 'CSR' => array(
39 'data_type' => 'text',
40 ),
41 'SIGN' => array(
42 'data_type' => 'text',
43 ),
44 'CERT' => array(
45 'data_type' => 'text',
46 ),
47 'PKEY' => array(
48 'data_type' => 'text',
49 ),
50 'PUB_KEY' => array(
51 'data_type' => 'text',
52 )
53 );
54 }
55}