• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/scrum/form/entityinfo.php
  • Класс: BitrixTasksScrumFormEntityInfo
  • Вызов: EntityInfo::setTemplatesClosed
public function setTemplatesClosed(string $templatesClosed): void
{
	$availableValues = ['Y', 'N'];
	if (!in_array($templatesClosed, $availableValues))
	{
		$templatesClosed = 'N';
	}
	$this->templatesClosed = $templatesClosed;
}