Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
goodssection.php
1<?php
12namespace Bitrix\Sale\Internals;
13
16
17Loc::loadMessages(__FILE__);
18
35class GoodsSectionTable extends Entity\DataManager
36{
37 public static function getTableName()
38 {
39 return 'b_iblock_section_element';
40 }
41
42 public static function getMap()
43 {
44 return array(
45 'IBLOCK_ELEMENT_ID' => array(
46 'data_type' => 'integer',
47 'primary' => true
48 ),
49 'PRODUCT' => array(
50 'data_type' => 'Product',
51 'reference' => array(
52 '=this.IBLOCK_ELEMENT_ID' => 'ref.ID'
53 )
54 ),
55 'IBLOCK_SECTION_ID' => array(
56 'data_type' => 'integer',
57 'primary' => true
58 ),
59 'SECT' => array(
60 'data_type' => 'Section',
61 'reference' => array(
62 '=this.IBLOCK_SECTION_ID' => 'ref.ID'
63 )
64 )
65 );
66 }
67}
static loadMessages($file)
Definition loc.php:64