• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Relation/RelationManager.php
  • Класс: Bitrix\Crm\Relation\RelationManager
  • Вызов: RelationManager::areItemsBound
public function areItemsBound(ItemIdentifier $parent, ItemIdentifier $child): bool
{
	$relation = $this->findExistingRelationByIdentifiers($parent, $child);
	if (!$relation)
	{
		return false;
	}

	return $relation->areItemsBound($parent, $child);
}