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

	try
	{
		$result = $this->repository
			->findByCode($this->defaultFormatCode, $languageId);

	}
	catch (RuntimeException $exception)
	{
		$this->processException($exception);
	}

	return $result;
}