• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/service/locationservice.php
  • Класс: BitrixLocationServiceLocationService
  • Вызов: LocationService::findById
public function findById(int $locationId, string $languageId, int $searchScope = LOCATION_SEARCH_SCOPE_ALL)
{
	$result = false;

	try
	{
		$result = $this->repository->findById($locationId, $languageId, $searchScope);
	}
	catch (RuntimeException $exception)
	{
		$this->processException($exception);
	}

	return $result;
}