• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/comments/internals/comment.php
  • Класс: BitrixTasksCommentsInternalsComment
  • Вызов: Comment::appendPartText
public function appendPartText(string $partName, string $text): void
{
	if ($part = $this->getPart($partName))
	{
		$part->setText($part->getText().$text);
	}
	else
	{
		$this->addPart($partName, $text, []);
	}
}