• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/contactlist.php
  • Класс: Bitrix\Sender\ContactListTable
  • Вызов: ContactListTable::getMap
static function getMap()
{
	return array(
		'CONTACT_ID' => array(
			'data_type' => 'integer',
			'primary' => true,
		),
		'LIST_ID' => array(
			'data_type' => 'integer',
			'primary' => true,
		),
		'LIST' => array(
			'data_type' => 'Bitrix\Sender\ListTable',
			'reference' => array('=this.LIST_ID' => 'ref.ID'),
		),
		'CONTACT' => array(
			'data_type' => 'Bitrix\Sender\ContactTable',
			'reference' => array('=this.CONTACT_ID' => 'ref.ID'),
		),
	);
}