• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/services/base.php
  • Класс: BitrixSaleDeliveryServicesBase
  • Вызов: Base::getNameWithParent
public function getNameWithParent()
{
	$result =  $this->name;

	if($parent = $this->getParentService())
		$result = $parent->getName()." (".$result.")";

	return $result;
}