- Модуль: tasks
- Путь к файлу: ~/bitrix/modules/tasks/lib/internals/task/parameter.php
- Класс: BitrixTasksInternalsTaskParameterTable
- Вызов: ParameterTable::getMap
static function getMap()
{
return array(
'ID' => array(
'data_type' => 'integer',
'primary' => true,
'autocomplete' => true,
//'title' => Loc::getMessage('TASK_PARAMETER_ENTITY_ID_FIELD'),
),
'TASK_ID' => array(
'data_type' => 'integer',
'required' => true,
//'title' => Loc::getMessage('TASK_PARAMETER_ENTITY_TASK_ID_FIELD'),
),
'CODE' => array(
'data_type' => 'integer',
'required' => true,
'title' => Loc::getMessage('TASK_PARAMETER_ENTITY_CODE_FIELD'),
),
'VALUE' => array(
'data_type' => 'string',
'validation' => array(__CLASS__, 'validateValue'),
//'title' => Loc::getMessage('TASK_PARAMETER_ENTITY_VALUE_FIELD'),
),
);
}