• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/scrum/form/entityform.php
  • Класс: BitrixTasksScrumFormEntityForm
  • Вызов: EntityForm::toArray
public function toArray(): array
{
	return [
		'id' => $this->getId(),
		'groupId' => $this->getGroupId(),
		'entityType' => $this->getEntityType(),
		'name' => $this->getName(),
		'sort' => $this->getSort(),
		'createdBy' => $this->getCreatedBy(),
		'modifiedBy' => $this->getModifiedBy(),
		'dateStart' => $this->getDateStart(),
		'dateEnd' => $this->getDateEnd(),
		'status' => $this->getStatus(),
		'info' => $this->getInfo(),
		'children' => $this->getChildren(),
		'tmpId' => $this->getTmpId(),
	];
}