- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/webform/internals/queue.php
- Класс: Bitrix\Crm\WebForm\Internals\QueueTable
- Вызов: QueueTable::getMap
static function getMap()
{
return array(
'ID' => array(
'data_type' => 'integer',
'primary' => true,
'autocomplete' => true,
),
'FORM_ID' => array(
'data_type' => 'integer',
'required' => true,
),
'USER_ID' => array(
'data_type' => 'integer',
'required' => true,
),
'WORK_TIME' => array(
'data_type' => 'boolean',
'required' => false,
'default_value' => 'N',
'values' => array('N','Y')
),
);
}