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

	if($parents = $this->getParents())
	{
		foreach ($parents as $parent)
		{
			$result = $parent->getName().', '.$this->getName();
		}
	}

	return $result;
}