• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/rest.php
  • Класс: CSocNetLogRestService
  • Вызов: CSocNetLogRestService::getBlogCommentEventId
static function getBlogCommentEventId(): ?array
{
	static $blogCommentEventIdList = null;
	if ($blogCommentEventIdList === null)
	{
		$blogCommentLivefeedProvider = new BitrixSocialnetworkLivefeedBlogComment;
		$blogCommentEventIdList = $blogCommentLivefeedProvider->getEventId();
	}

	return $blogCommentEventIdList;
}