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

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

	return $result;
}