Current Path : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/modules/landing/lib/internals/ |
Current File : /var/www/www-root/data/www/www.monolith-realty.ru/bitrix/modules/landing/lib/internals/history.php |
<?php namespace Bitrix\Landing\Internals; use \Bitrix\Main\Localization\Loc; use \Bitrix\Main\Entity; Loc::loadMessages(__FILE__); class HistoryTable extends Entity\DataManager { /** * Returns DB table name for entity. * @return string */ public static function getTableName(): string { return 'b_landing_history'; } /** * Returns entity map definition. * @return array */ public static function getMap(): array { return [ 'ID' => new Entity\IntegerField('ID', [ 'primary' => true, 'autocomplete' => true, 'title' => 'ID', ]), 'ENTITY_TYPE' => new Entity\StringField('ENTITY_TYPE', [ 'title' => Loc::getMessage('LANDING_TABLE_HISTORY_FIELD_ENTITY_TYPE'), 'required' => true, ]), 'ENTITY_ID' => new Entity\IntegerField('ENTITY_ID', [ 'title' => Loc::getMessage('LANDING_TABLE_HISTORY_FIELD_ENTITY_ID'), 'required' => true, ]), 'ACTION' => new Entity\TextField('ACTION', [ 'title' => Loc::getMessage('LANDING_TABLE_HISTORY_FIELD_ACTION'), 'required' => true, ]), 'ACTION_PARAMS' => new Entity\TextField('ACTION_PARAMS', [ 'title' => Loc::getMessage('LANDING_TABLE_HISTORY_FIELD_ACTION_PARAMS'), 'required' => true, 'serialized' => true, ]), 'MULTIPLY_ID' => new Entity\IntegerField('MULTIPLY_ID', [ 'title' => Loc::getMessage('LANDING_TABLE_HISTORY_FIELD_MULTIPLY_ID'), ]), 'CREATED_BY_ID' => new Entity\IntegerField('CREATED_BY_ID', [ 'title' => Loc::getMessage('LANDING_TABLE_HISTORY_FIELD_CREATED_BY_ID'), 'required' => true, ]), 'DATE_CREATE' => new Entity\DatetimeField('DATE_CREATE', [ 'title' => Loc::getMessage('LANDING_TABLE_HISTORY_FIELD_DATE_CREATE'), 'required' => true, ]), ]; } }