• Модуль: translate
  • Путь к файлу: ~/bitrix/modules/translate/lib/index/internals/phrasefts.php
  • Класс: BitrixTranslateIndexInternalsPhraseFts
  • Вызов: PhraseFts::getPartitionTableName
static function getPartitionTableName(string $langId): string
{
	if (!in_array($langId, TranslateConfig::getLanguages(), true))
	{
		throw new ArgumentException('Parameter langId has wrong value');
	}

	return "b_translate_phrase_fts_{$langId}";
}