• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/internals/chatbinding.php
  • Класс: BitrixLandingInternalsChatBindingTable
  • Вызов: ChatBindingTable::getMap
static function getMap()
{
	return array(
		'ID' => new EntityIntegerField('ID', array(
			'title' => 'ID',
			'primary' => true
		)),
		'INTERNAL_CHAT_ID' => new EntityIntegerField('INTERNAL_CHAT_ID', array(
			'title' => Loc::getMessage('LANDING_TABLE_FIELD_INTERNAL_CHAT_ID'),
			'required' => true
		)),
		'ENTITY_ID' => new EntityIntegerField('ENTITY_ID', array(
			'title' => Loc::getMessage('LANDING_TABLE_FIELD_ENTITY_ID'),
			'required' => true
		)),
		'ENTITY_TYPE' => new EntityStringField('ENTITY_TYPE', array(
			'title' => Loc::getMessage('LANDING_TABLE_FIELD_ENTITY_TYPE'),
			'required' => true
		))
	);
}