• Модуль: forum
  • Путь к файлу: ~/bitrix/modules/forum/lib/update/livefeedconvertservicemessage.php
  • Класс: BitrixForumUpdateLivefeedConvertServiceMessage
  • Вызов: LivefeedConvertServiceMessage::getCommentsCollection
protected function getCommentsCollection(array $filter, $lastId)
{
	return ForumMessageTable::getList([
		"select" => ["ID", "POST_MESSAGE", "SERVICE_TYPE"],
		"filter" => $filter + ($lastId > 0 ? [
			" $lastId
		] : []),
		"limit" => self::MESSAGE_LIMIT,
		"order" => ["ID" => "DESC"]
	])->fetchCollection();
}