- Модуль: report
- Путь к файлу: ~/bitrix/modules/report/lib/internals/sharing.php
- Класс: BitrixReportInternalsSharingTable
- Вызов: SharingTable::getMap
static function getMap()
{
$fieldsMap = array(
'ID' => array(
'data_type' => 'integer',
'primary' => true
),
'REPORT_ID' => array(
'data_type' => 'integer',
'required' => true
),
'LINK_REPORT' => array(
'data_type' => 'BitrixReportReportTable',
'reference' => array(
'=this.REPORT_ID' => 'ref.ID'
),
),
'ENTITY' => array(
'data_type' => 'string',
'required' => true
),
'RIGHTS' => array(
'data_type' => 'string',
'required' => true
)
);
return $fieldsMap;
}