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

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

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

	if ($this->sort !== null)
	{
		$fields['SORT'] = $this->sort;
	}

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

	if ($this->dateStart)
	{
		$fields['DATE_START'] = $this->dateStart;
	}

	if ($this->dateEnd)
	{
		$fields['DATE_END'] = $this->dateEnd;
	}

	if ($this->status)
	{
		$fields['STATUS'] = $this->status;
	}

	if ($this->info)
	{
		$fields['INFO'] = $this->info;
	}

	return $fields;
}