Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
CalendarType.php
1<?php
2
4
8
10{
11 protected const HAS_URL = true;
12
13 protected function getUrl(): string
14 {
15 if (!Loader::includeModule('calendar'))
16 {
17 return '';
18 }
19
20 $uri = new Uri(\CCalendar::GetPathForCalendarEx($this->getContext()->getUserId()));
21 $uri->addParams(['EVENT_ID' => $this->entityId]);
22 $url = $uri->getUri();
23
24 return $url;
25 }
26}