• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/location.php
  • Класс: BitrixLocationEntityLocation
  • Вызов: Location::isParentOf
public function isParentOf(Location $childCandidate): bool
{
	$candidateParents = $childCandidate->getParents();

	if(!$candidateParents)
	{
		return false;
	}

	return $candidateParents->isContain($this);
}