- Модуль: translate
- Путь к файлу: ~/bitrix/modules/translate/lib/index/internals/phrasefts.php
- Класс: BitrixTranslateIndexInternalsPhraseFts
- Вызов: PhraseFts::getMap
static function getMap(): array
{
return [
'ID' => [
'data_type' => 'integer',
'primary' => true,
],
'FILE_ID' => [
'data_type' => 'integer',
],
'PATH_ID' => [
'data_type' => 'string',
],
'CODE' => [
'data_type' => 'string',
],
'PHRASE' => [
'data_type' => 'string',
],
'FILE' => [
'data_type' => IndexInternalsFileIndexTable::class,
'reference' => [
'=this.FILE_ID' => 'ref.ID',
],
'join_type' => 'INNER',
],
'PATH' => [
'data_type' => IndexInternalsPathIndexTable::class,
'reference' => [
'=this.PATH_ID' => 'ref.ID',
],
'join_type' => 'INNER',
],
];
}