• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/binding/contactcompany.php
  • Класс: Bitrix\Crm\Binding\ContactCompanyTable
  • Вызов: ContactCompanyTable::bindContactIDs
static function bindContactIDs($companyID, array $contactIDs)
{
	$bindings = EntityBinding::prepareEntityBindings(\CCrmOwnerType::Contact, $contactIDs);
	$qty = count($bindings);
	if($qty > 0)
	{
		for($i = 0; $i < $qty; $i++)
		{
			$bindings[$i]['IS_PRIMARY'] = 'Y';
			$bindings[$i]['SORT'] = 10;
		}
		self::bindContacts($companyID, $bindings);
	}
}