• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/model/lastsearch.php
  • Класс: BitrixImModelLastSearchTable
  • Вызов: LastSearchTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'USER_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'DIALOG_ID' => array(
			'data_type' => 'string',
			'required' => true,
			'validation' => array(__CLASS__, 'validateDialogId'),
		),
		'ITEM_RID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'ITEM_CID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'RELATION' => array(
			'data_type' => 'BitrixImModelRelationTable',
			'reference' => array('=this.ITEM_RID' => 'ref.ID'),
			'join_type' => 'INNER',
		),
		'CHAT' => array(
			'data_type' => 'BitrixImModelChatTable',
			'reference' => array('=this.ITEM_CID' => 'ref.ID'),
			'join_type' => 'INNER',
		),
	);
}