• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/component/userprofile.php
  • Класс: BitrixIntranetComponentUserProfile
  • Вызов: UserProfile::getTagsInstance
protected function getTagsInstance()
{
	if ($this->tags === null)
	{
		$this->tags = new BitrixIntranetComponentUserProfileTags([
			'profileId' => $this->arParams['ID'],
			'permissions' => $this->getPermissions(),
			'pathToUser' => $this->arParams['PATH_TO_USER'],
		]);
	}
	return $this->tags;
}