• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/binding/leadcontact.php
  • Класс: Bitrix\Crm\Binding\LeadContactTable
  • Вызов: LeadContactTable::getMap
static function getMap()
{
	return array(
		'LEAD_ID' => array('primary' => true, 'data_type' => 'integer'),
		'CONTACT_ID' => array('primary' => true, 'data_type' => 'integer'),
		'SORT' => array('data_type' => 'integer', 'default_value' => 0),
		'ROLE_ID' => array('data_type' => 'integer', 'default_value' => 0),
		'IS_PRIMARY' => array('data_type' => 'boolean', 'values' => array('N', 'Y'), 'default_value' => 'N'),
		(new Reference('LEAD', LeadTable::class, Join::on('this.LEAD_ID', 'ref.ID'))),
	);
}