• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/comments/task/commentposter.php
  • Класс: BitrixTasksCommentsTaskCommentPoster
  • Вызов: CommentPoster::getCommentByType
public function getCommentByType($type = Comment::TYPE_DEFAULT): ?Comment
{
	foreach ($this->comments as $comment)
	{
		/** @var Comment $comment */
		if ($comment->getType() === $type)
		{
			return $comment;
		}
	}

	return null;
}