• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sharing/link/factory.php
  • Класс: BitrixCalendarSharingLinkFactory
  • Вызов: Factory::createUserLink
public function createUserLink(int $userId): self
{
	$userLink = (new UserLink())
		->setUserId($userId)
		->setActive(true);

	(new UserLinkMapper())->create($userLink);

	return $this;
}