• Модуль: translate
  • Путь к файлу: ~/bitrix/modules/translate/lib/index/phraseindexcollection.php
  • Класс: BitrixTranslateIndexPhraseIndexCollection
  • Вызов: PhraseIndexCollection::getPhraseByCode
public function getPhraseByCode($code): ?string
{
	foreach ($this as $phrase)
	{
		if ($phrase->getCode() === $code)
		{
			return $phrase;
		}
	}

	return null;
}