• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Relation/StorageStrategy/EntityBinding.php
  • Класс: Bitrix\Crm\Relation\StorageStrategy\EntityBinding
  • Вызов: EntityBinding::getChildElements
public function getChildElements(ItemIdentifier $parent, int $childEntityTypeId): array
{
	$result = [];
	foreach ($this->getChildIdsForParent($parent) as $childId)
	{
		$result[] = new ItemIdentifier($childEntityTypeId, $childId);
	}

	return $result;
}