• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/integration/ui/entityselector/userprovider.php
  • Класс: BitrixSocialnetworkIntegrationUIEntitySelectorUserProvider
  • Вызов: UserProvider::getIntranetUserUrl
static function getIntranetUserUrl(?int $userId = null): string
{
	$userPage = Option::get('socialnetwork', 'user_page', false, SITE_ID);
	if (!$userPage)
	{
		$userPage = SITE_DIR.'company/personal/';
	}

	return $userPage.'user/' . ($userId !== null ? $userId : '#id#') . '/';
}