• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/notification/task/throttle.php
  • Класс: BitrixTasksInternalsNotificationTaskThrottleTable
  • Вызов: ThrottleTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'TASK_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'AUTHOR_ID' => array(
			'data_type' => 'integer',
		),
		'INFORM_AUTHOR' => array(
			'data_type' => 'string',
			'validation' => array(__CLASS__, 'validateInformAuthor'),
		),
		'STATE_ORIG' => array(
			'data_type' => 'text',
		),
		'STATE_LAST' => array(
			'data_type' => 'text',
		),
	);
}