- Модуль: sale
- Путь к файлу: ~/bitrix/modules/sale/lib/goodssection.php
- Класс: Bitrix\Sale\GoodsSectionTable
- Вызов: GoodsSectionTable::getMap
static function getMap()
{
return array(
'IBLOCK_ELEMENT_ID' => array(
'data_type' => 'integer',
'primary' => true
),
'PRODUCT' => array(
'data_type' => 'Product',
'reference' => array(
'=this.IBLOCK_ELEMENT_ID' => 'ref.ID'
)
),
'IBLOCK_SECTION_ID' => array(
'data_type' => 'integer',
'primary' => true
),
'SECT' => array(
'data_type' => 'Section',
'reference' => array(
'=this.IBLOCK_SECTION_ID' => 'ref.ID'
)
)
);
}