• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/service/formatservice.php
  • Класс: BitrixLocationServiceFormatService
  • Вызов: FormatService::findByCode
public function findByCode(string $formatCode, string $languageId)
{
	$result = false;

	try
	{
		$result = $this->repository->findByCode($formatCode, $languageId);
	}
	catch (RuntimeException $exception)
	{
		$this->processException($exception);
	}

	return $result;
}