• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/uf/blogpostcommentconnector.php
  • Класс: BitrixDiskUfBlogPostCommentConnector
  • Вызов: BlogPostCommentConnector::getDataToShowByUser
public function getDataToShowByUser(int $userId)
{
	$connector = BlogPostConnector::createFromBlogPostCommentConnector($this);
	$dataToShow = $connector->getDataToShow();
	$detailUrl = new Uri($dataToShow['DETAIL_URL'] . "#com{$this->entityId}");
	$detailUrl->addParams(['commentId' => $this->entityId]);

	$dataToShow['DETAIL_URL'] = $detailUrl->getUri();

	return $dataToShow;
}