- Модуль: forum
- Путь к файлу: ~/bitrix/modules/forum/lib/forumsite.php
- Класс: BitrixForumForumSiteTable
- Вызов: ForumSiteTable::getMap
static function getMap()
{
return array(
'FORUM_ID' => array(
'data_type' => 'integer',
'primary' => true,
'title' => Loc::getMessage('FORUM_SITE_TABLE_FIELD_FORUM_ID'),
),
'SITE_ID' => array(
'data_type' => 'string',
'primary' => true,
'size' => 2,
'title' => Loc::getMessage('FORUM_SITE_TABLE_FIELD_SITE_ID'),
),
'PATH2FORUM_MESSAGE' => array(
'data_type' => 'string',
'title' => Loc::getMessage('FORUM_SITE_TABLE_FIELD_SITE_ID'),
),
'FORUM' => array(
'data_type' => 'BitrixForumForum',
'reference' => array('=this.FORUM_ID' => 'ref.ID')
),
'SITE' => array(
'data_type' => 'BitrixMainSite',
'reference' => array('=this.SITE_ID' => 'ref.LID'),
),
);
}