• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/lib/contact.php
  • Класс: BitrixSocialservicesContactTable
  • Вызов: ContactTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'TIMESTAMP_X' => array(
			'data_type' => 'datetime',
		),
		'USER_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'CONTACT_USER_ID' => array(
			'data_type' => 'integer',
		),
		'CONTACT_XML_ID' => array(
			'data_type' => 'integer',
		),
		'CONTACT_NAME' => array(
			'data_type' => 'string',
		),
		'CONTACT_LAST_NAME' => array(
			'data_type' => 'string',
		),
		'CONTACT_PHOTO' => array(
			'data_type' => 'string',
		),
		'LAST_AUTHORIZE' => array(
			'data_type' => 'datetime',
		),
		'NOTIFY' => array(
			'data_type' => 'boolean',
			'values' => array(static::DONT_NOTIFY, static::NOTIFY),
		),
		'USER' => array(
			'data_type' => 'BitrixMainUserTable',
			'reference' => array('=this.USER_ID' => 'ref.ID'),
		),
		'CONTACT_USER' => array(
			'data_type' => 'BitrixMainUserTable',
			'reference' => array('=this.CONTACT_USER_ID' => 'ref.ID'),
		),
	);
}