• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/internals/invitation.php
  • Класс: BitrixIntranetInternalsInvitationTable
  • Вызов: InvitationTable::getMap
static function getMap()
{
	return [
		'ID' => [
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		],
		'USER_ID' => [
			'data_type' => 'integer',
			'required' => true,
		],
		'ORIGINATOR_ID' => [
			'data_type' => 'integer',
		],
		'INVITATION_TYPE' => [
			'data_type' => 'string',
		],
		'DATE_CREATE' => [
			'data_type' => 'datetime',
			'default_value' => function()
			{
				return new TypeDateTime();
			}
		],
		'INITIALIZED' => [
			'data_type' => 'boolean',
			'values' => [ 'N','Y' ],
			'default_value' => 'N'
		],
		'USER' => array(
			'data_type' => 'BitrixMainUser',
			'reference' => array('=this.USER_ID' => 'ref.ID')
		),
		'ORIGINATOR' => array(
			'data_type' => 'BitrixMainUser',
			'reference' => array('=this.ORIGINATOR_ID' => 'ref.ID')
		),

	];
}