• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/checklist/task/taskchecklistfacade.php
  • Класс: BitrixTasksCheckListTaskTaskCheckListFacade
  • Вызов: TaskCheckListFacade::postChangesComment
static function postChangesComment($taskId, $userId): void
{
	$commentPoster = CommentPoster::getInstance($taskId, $userId);
	$commentPoster->appendChecklistChangesMessage();

	if (!$commentPoster->getDeferredPostMode())
	{
		$commentPoster->postComments();
		$commentPoster->clearComments();
	}
}