• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/scrum/form/epicform.php
  • Класс: BitrixTasksScrumFormEpicForm
  • Вызов: EpicForm::getFieldsToUpdate
public function getFieldsToUpdate(): array
{
	$fields = [];

	if ($this->groupId)
	{
		$fields['GROUP_ID'] = $this->groupId;
	}

	if ($this->name)
	{
		$fields['NAME'] = $this->name;
	}

	if ($this->description)
	{
		$fields['DESCRIPTION'] = $this->description;
	}

	if ($this->createdBy)
	{
		$fields['CREATED_BY'] = $this->createdBy;
	}

	if ($this->modifiedBy)
	{
		$fields['MODIFIED_BY'] = $this->modifiedBy;
	}

	if ($this->color)
	{
		$fields['COLOR'] = $this->color;
	}

	return $fields;
}