- Модуль: timeman
- Путь к файлу: ~/bitrix/modules/timeman/lib/model/monitor/monitorcommenttable.php
- Класс: BitrixTimemanModelMonitorMonitorCommentTable
- Вызов: MonitorCommentTable::getMap
static function getMap()
{
return [
new IntegerField(
'ID',
[
'primary' => true,
'autocomplete' => true,
'title' => Loc::getMessage('MONITOR_COMMENT_ENTITY_ID_FIELD')
]
),
new IntegerField(
'USER_LOG_ID',
[
'required' => true,
'title' => Loc::getMessage('MONITOR_COMMENT_ENTITY_USER_LOG_ID_FIELD')
]
),
new IntegerField(
'USER_ID',
[
'required' => true,
'title' => Loc::getMessage('MONITOR_COMMENT_ENTITY_USER_ID_FIELD')
]
),
new TextField(
'COMMENT',
[
'title' => Loc::getMessage('MONITOR_COMMENT_ENTITY_COMMENT_FIELD')
]
),
];
}