• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/livefeed/blogcomment.php
  • Класс: BitrixSocialnetworkLivefeedBlogComment
  • Вызов: BlogComment::getLiveFeedUrl
public function getLiveFeedUrl(): string
{
	$pathToPost = BitrixSocialnetworkHelperPath::get('userblogpost_page', $this->getSiteId());

	if (
		!empty($pathToPost)
		&& ($comment = $this->getSourceFields())
		&& isset($comment["POST"])
	)
	{
		$pathToPost = CComponentEngine::makePathFromTemplate($pathToPost, array("post_id" => $comment["POST"]["ID"], "user_id" => $comment["POST"]["AUTHOR_ID"]));
		$pathToPost .= (mb_strpos($pathToPost, '?') === false ? '?' : '&').'commentId='.$comment["ID"].'#com'.$comment["ID"];
	}

	return $pathToPost;
}