• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/forum/task/comment.php
  • Класс: BitrixTasksIntegrationForumTaskComment
  • Вызов: Comment::collectFileAttachments
static function collectFileAttachments(int $messageId): void
{
	$query = AttachedObjectTable::query();
	$query
		->setSelect(['ID'])
		->where('ENTITY_TYPE', ForumMessageConnector::class)
		->where('ENTITY_ID', $messageId)
	;

	self::$fileAttachments = $query->exec()->fetchCollection()->getIdList();
}