• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Relation/RelationManager.php
  • Класс: Bitrix\Crm\Relation\RelationManager
  • Вызов: RelationManager::getParentElements
public function getParentElements(ItemIdentifier $child): array
{
	$parentsArrays = [];
	foreach ($this->getParentRelations($child->getEntityTypeId()) as $relation)
	{
		$parentsArrays[] = $relation->getParentElements($child);
	}

	return $this->flattenArray($parentsArrays);
}