• Модуль: translate
  • Путь к файлу: ~/bitrix/modules/translate/lib/index/internals/phrasefts.php
  • Класс: BitrixTranslateIndexInternalsPhraseFts
  • Вызов: PhraseFts::getFtsEntityClass
static function getFtsEntityClass(string $langId): string
{
	static $cache = [];
	if (!isset($cache[$langId]))
	{
		$entity = self::getFtsEntity($langId);
		$cache[$langId] = $entity->getDataClass();
	}

	return $cache[$langId];
}