• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/controller/livefeed.php
  • Класс: BitrixSocialnetworkControllerLivefeed
  • Вызов: Livefeed::mobileGetDetailAction
public function mobileGetDetailAction($logId): ?BitrixMainEngineResponseComponent
{
	$logId = (int)$logId;
	if ($logId <= 0)
	{
		$this->addError(new Error('No Log Id', 'SONET_CONTROLLER_LIVEFEED_NO_LOG_ID'));
		return null;
	}

	return new BitrixMainEngineResponseComponent('bitrix:mobile.socialnetwork.log.ex', '', [
		'LOG_ID' => $logId,
		'SITE_TEMPLATE_ID' => 'mobile_app',
		'TARGET' => 'postContent',
		'PATH_TO_USER' => SITE_DIR.'mobile/users/?user_id=#user_id#'
	]);
}