• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/control/handler/taskfieldhandler.php
  • Класс: BitrixTasksControlHandlerTaskFieldHandler
  • Вызов: TaskFieldHandler::prepareOutlook
public function prepareOutlook(): self
{
	if (!$this->taskId)
	{
		$this->fields['OUTLOOK_VERSION'] = 1;
	}
	else
	{
		$this->fields['OUTLOOK_VERSION'] = ($this->taskData['OUTLOOK_VERSION'] ?: 1) + 1;
	}

	return $this;
}